diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-07-30 14:28:30 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-07-30 14:28:30 +0000 |
commit | bf01b5e19c7180a1ed30d32a86b295dcc4dfb4cf (patch) | |
tree | 5f02529fc57b2e24b2bd51b77219e63bdaff3630 /otherlibs/unix/unix.h | |
parent | c1812a8d5de335abe9ffea6140b36dc9fddb1082 (diff) |
Nettoyage #ifdef ANSI.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@179 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/unix.h')
-rw-r--r-- | otherlibs/unix/unix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/unix/unix.h b/otherlibs/unix/unix.h index e63b04a7f..1c419fca8 100644 --- a/otherlibs/unix/unix.h +++ b/otherlibs/unix/unix.h @@ -1,14 +1,14 @@ #define Nothing ((value) 0) #ifndef NULL -#ifdef ANSI +#ifdef __STDC__ #define NULL ((void *) 0) #else #define NULL ((char *) 0) #endif #endif -#ifdef ANSI +#ifdef __STDC__ extern void unix_error(int errcode, char * cmdname, value arg); extern void uerror(char * cmdname, value arg); #else |