bumps vnstat to 1.6 and add uci files
[openwrt/svn-archive/archive.git] / mail / xmail / files / SysMachine.h
1 #ifndef _MACHDEFS_H
2 #define _MACHDEFS_H
3
4
5 #undef MACH_BIG_ENDIAN_WORDS
6
7 #undef MACH_BIG_ENDIAN_BITFIELD
8
9 typedef signed char MachInt8;
10 typedef unsigned char MachUInt8;
11 #define MACH_TYPE_8BIT char
12
13 typedef signed short MachInt16;
14 typedef unsigned short MachUInt16;
15 #define MACH_TYPE_16BIT short
16
17 typedef signed int MachInt32;
18 typedef unsigned int MachUInt32;
19 #define MACH_TYPE_32BIT int
20
21
22
23 #endif
24