Home | History | Annotate | Download | only in watcom
      1 #ifndef __STDINT_H
      2 #define __STDINT_H
      3 #include <sys/types.h>
      4 typedef  unsigned char   uint8_t;
      5 typedef  unsigned short  uint16_t;
      6 typedef  unsigned long   uint32_t;
      7 
      8 typedef    signed char   int8_t;
      9 typedef    signed short  int16_t;
     10 typedef    signed long   int32_t;
     11 #endif
     12 
     13 
     14