diff options
| author | Marc G. Fournier | 1998-02-01 07:44:00 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1998-02-01 07:44:00 +0000 |
| commit | 6e9558e6397001c63ac5aa454e38c3199ff0f28a (patch) | |
| tree | 210a2a239014e59cb83aff193f40aa036bc03b73 /src/include | |
| parent | d8ddb10f51603b9d65ae756c647788ba204ddd8d (diff) | |
From: "Billy G. Allie" <Bill.Allie@mug.org>
The following patches will bring the UNIVEL port in line with the new porting
model used in postgreSQL 6.3
Diffstat (limited to 'src/include')
| -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 |
