blob: e0bfbda3fc6af76946fb19348f0fa926b2458e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define NR_SIZEOF_CHAR 1
#define NR_SIZEOF_SHORT 2
#define NR_SIZEOF_INT 4
#define NR_SIZEOF_LONG 4
typedef signed char NRByte;
typedef unsigned char NRUByte;
typedef signed short NRShort;
typedef unsigned short NRUShort;
typedef signed int NRLong;
typedef unsigned long NRULong;
|