diff options
Diffstat (limited to 'src/include/port/univel.h')
-rw-r--r-- | src/include/port/univel.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/include/port/univel.h b/src/include/port/univel.h index 3be6179f766..028c8859bfb 100644 --- a/src/include/port/univel.h +++ b/src/include/port/univel.h @@ -5,11 +5,16 @@ #define HAS_TEST_AND_SET #define NEED_I386_TAS_ASM -#define USE_UNIVEL_CC_ASM /***************************************\ - | Define this if you are compiling with | - | the native UNIXWARE C compiler. | - \***************************************/ +/*************************************** + * Define this if you are compiling with + * the native UNIXWARE C compiler. + ***************************************/ +#define USE_UNIVEL_CC_ASM typedef unsigned char slock_t; +/*************************************************************** + * strcasecmp() is in c89, but is not in any include file :-( + ***************************************************************/ +int strcasecmp(char *, char *); #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321 |