*** 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)
