sztypes.h 171 B

1234567891011121314
  1. #ifndef _SZ_TYPES_H_
  2. #define _SZ_TYPES_H_
  3. #include <sys/types.h>
  4. #ifndef uint
  5. #define uint unsigned int
  6. #endif
  7. #ifndef ulong
  8. #define ulong unsigned long
  9. #endif
  10. #endif