blob: ea76d8c264c244828cea48d3161656505eab62f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- xcreat.c 1998/07/21 09:33:41 1.1
+++ xcreat.c 1998/07/21 09:34:32
@@ -22,7 +22,10 @@
/*#define NOuname /* uncomment if uname is not available */
/*#define NOstrpbrk /* uncomment if strpbrk is not available */
/*#define strchr(s,c) index(s,c) /* uncomment if strchr is not available */
+#include <sys/param.h>
+#if !(defined(BSD) && BSD >= 199306)
#define const /* can be undefined for ANSI compilers */
+#endif
#include <unistd.h> /* open() close() link() unlink()
getpid() */
|