Merge branch 'master' of git://github.com/illumos/illumos-gate
[unleashed.git] / usr / src / grub / grub-0.97 / netboot / stdint.h
blob037f12fa489eac49deee710b9b2af549b46b32bf
1 #ifndef STDINT_H
2 #define STDINT_H
3 /*
4 * I'm architecture depended. Check me before port GRUB
5 */
6 typedef unsigned size_t;
8 typedef unsigned char uint8_t;
9 typedef unsigned short uint16_t;
10 typedef unsigned long uint32_t;
11 typedef unsigned long long uint64_t;
13 typedef signed char int8_t;
14 typedef signed short int16_t;
15 typedef signed long int32_t;
16 typedef signed long long int64_t;
18 #endif /* STDINT_H */