lib: Add missing bits to stddef.h, stdint.h; pointers are "long"
[profile/ivi/syslinux.git] / com32 / include / bitsize / stddef.h
1 /*
2  * bits32/stddef.h
3  */
4
5 #ifndef _BITSIZE_STDDEF_H
6 #define _BITSIZE_STDDEF_H
7
8 #define _SIZE_T
9 typedef unsigned long size_t;
10
11 #define _PTRDIFF_T
12 typedef signed long ptrdiff_t;
13
14 #endif /* _BITSIZE_STDDEF_H */