mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
23 lines
520 B
Plaintext
23 lines
520 B
Plaintext
*** global.h.ORIG Sat Sep 26 12:26:48 1998
|
|
--- global.h Sat Sep 26 12:27:44 1998
|
|
***************
|
|
*** 19,29 ****
|
|
--- 19,35 ----
|
|
/* POINTER defines a generic pointer type */
|
|
typedef unsigned char *POINTER;
|
|
|
|
+ #if 0
|
|
/* UINT2 defines a two byte word */
|
|
typedef unsigned short int UINT2;
|
|
|
|
/* UINT4 defines a four byte word */
|
|
typedef unsigned long int UINT4;
|
|
+ #else
|
|
+ #include <sys/types.h>
|
|
+ typedef u_int16_t UINT2;
|
|
+ typedef u_int32_t UINT4;
|
|
+ #endif
|
|
|
|
#ifndef NULL_PTR
|
|
#define NULL_PTR ((POINTER)0)
|