diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-03-25 07:54:53 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-03-25 07:54:53 +0000 |
commit | d2a386d6e35c1791ffcc8f09fe162b0591184f95 (patch) | |
tree | dbb15074e28110ac0be0cddfa32585145cd89738 /src/port/univel.h | |
parent | 52ab6525fb344b1a76c089d7edde0e29de751558 (diff) |
MOre univel port patches/files from:
"Michael P. Snyder" <msnyder@hawkeye.huntersmoon.com>
Diffstat (limited to 'src/port/univel.h')
-rw-r--r-- | src/port/univel.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/port/univel.h b/src/port/univel.h new file mode 100644 index 00000000000..f1a7afc83bb --- /dev/null +++ b/src/port/univel.h @@ -0,0 +1,19 @@ +# define USE_POSIX_TIME +# define NO_EMPTY_STMTS +# define USE_POSIX_SIGNALS +# define SYSV_DIRENT + +#if 0 +# define HAS_TEST_AND_SET + typedef unsigned char slock_t; +#endif + +extern long random(void); +extern void srandom(int seed); +extern int strcasecmp(char *s1,char *s2); +extern int gethostname(char *name,int namelen); + +#ifndef BYTE_ORDER +#define BYTE_ORDER LITTLE_ENDIAN +#endif + |