Home | History | Annotate | Download | only in config
      1 #ifndef sk_stdint_DEFINED
      2 #define sk_stdint_DEFINED
      3 
      4 typedef signed char int8_t;
      5 typedef unsigned char   uint8_t;
      6 typedef short  int16_t;
      7 typedef unsigned short  uint16_t;
      8 typedef int  int32_t;
      9 typedef unsigned   uint32_t;
     10 typedef long long  int64_t;
     11 typedef unsigned long long   uint64_t;
     12 
     13 #endif
     14