summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/unix.h
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/unix.h')
-rw-r--r--otherlibs/unix/unix.h4
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