blob: 6992cc6fc69c78a728692758526ae50923dd6012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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;
|