mirror of
https://github.com/xcat2/xNBA.git
synced 2025-07-24 05:21:09 +00:00
Currently the only supported platform for x86_64 is EFI. Building an EFI64 gPXE requires a version of gcc that supports __attribute__((ms_abi)). This currently means a development build of gcc; the feature should be present when gcc 4.4 is released. In the meantime; you can grab a suitable gcc tree from git://git.etherboot.org/scm/people/mcb30/gcc/.git
22 lines
492 B
C
22 lines
492 B
C
#ifndef _BITS_STDINT_H
|
|
#define _BITS_STDINT_H
|
|
|
|
typedef unsigned int size_t;
|
|
typedef signed int ssize_t;
|
|
typedef signed long off_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef unsigned long long uint64_t;
|
|
|
|
typedef signed char int8_t;
|
|
typedef signed short int16_t;
|
|
typedef signed int int32_t;
|
|
typedef signed long long int64_t;
|
|
|
|
typedef unsigned long physaddr_t;
|
|
typedef unsigned long intptr_t;
|
|
|
|
#endif /* _BITS_STDINT_H */
|