home *** CD-ROM | disk | FTP | other *** search
- #ifndef _os9k
- #define _os9k
-
- #ifndef O_RDONLY
- #define O_RDONLY S_IREAD
- #endif
-
- #ifndef __STDC__
- #define const
- #endif
-
- #ifndef bcmp
- #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
- #endif
- #ifndef bcopy
- #define bcopy(s, d, n) memcpy ((d), (s), (n))
- #endif
- #ifndef bzero
- #define bzero(s, n) memset ((s), 0, (n))
- #endif
-
- #ifndef max
- #define max(a, b) ((a)>(b)?(a):(b))
- #endif
-
- #define PR_FILE_NAME "pr"
-
- #endif
-
- #ifndef HAVE_MEMCHR
- #define HAVE_MEMCHR 1
- #endif
-
- #ifndef REGEX_MALLOC
- #define REGEX_MALLOC
- #endif
-