Advertisement
Guest User

Untitled

a guest
Oct 29th, 2011
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.70 KB | None | 0 0
  1. #ifdef KERN_WORDSIZE == 32
  2.     typedef signed char            nint08;
  3.     typedef unsigned char          uint08;
  4.     typedef signed int             nint16;
  5.     typedef unsigned int           uint16;
  6.     typedef signed long int        nint32;
  7.     typedef unsigned long int      uint32;
  8.     typedef signed long long int   nint64;
  9.     typedef unsigned long long int uint64;
  10. #elif KERN_WORDSIZE == 64
  11.     typedef signed char            nint08;
  12.     typedef unsigned char          uint08;
  13.     typedef signed short           nint16;
  14.     typedef unsigned short         uint16;
  15.     typedef signed int             nint32;
  16.     typedef unsigned int           uint32;
  17.     typedef signed long int        nint64;
  18.     typedef unsigned long int      uint64;
  19. #endif
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement