* grub-core/lib/posix_wrap/sys/types.h (bool): Transform into an enum.

(uint8_t): New type.
	(uint16_t): Likewise.
	(uint32_t): Likewise.
	(uint64_t): Likewise.
This commit is contained in:
Szymon Janc 2010-09-05 14:24:39 +02:00 committed by Vladimir 'phcoder' Serbinenko
parent b81e40a379
commit a17792c324
2 changed files with 14 additions and 3 deletions

View file

@ -22,11 +22,14 @@
#include <grub/misc.h>
typedef grub_size_t size_t;
typedef int bool;
static const bool true = 1;
static const bool false = 0;
typedef enum { false = 0, true = 1 } bool;
#define ULONG_MAX GRUB_ULONG_MAX
#define UCHAR_MAX 0xff
typedef grub_uint8_t uint8_t;
typedef grub_uint16_t uint16_t;
typedef grub_uint32_t uint32_t;
typedef grub_uint64_t uint64_t;
#endif