source: bootcd/isolinux/syslinux-6.03/gpxe/src/arch/i386/include/bits/stdint.h

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 527 bytes
Line 
1#ifndef _BITS_STDINT_H
2#define _BITS_STDINT_H
3
4FILE_LICENCE ( GPL2_OR_LATER );
5
6typedef __SIZE_TYPE__           size_t;
7typedef signed long             ssize_t;
8typedef signed long             off_t;
9
10typedef unsigned char           uint8_t;
11typedef unsigned short          uint16_t;
12typedef unsigned int            uint32_t;
13typedef unsigned long long      uint64_t;
14
15typedef signed char             int8_t;
16typedef signed short            int16_t;
17typedef signed int              int32_t;
18typedef signed long long        int64_t;
19
20typedef unsigned long           physaddr_t;
21typedef unsigned long           intptr_t;
22
23#endif /* _BITS_STDINT_H */
Note: See TracBrowser for help on using the repository browser.