david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Use int rather than short for bool; it will give more efficient code.

This commit is contained in:
Michael Brown 2006-12-18 16:48:09 +00:00
parent 2ed2b2efe8
commit 688eb60df4
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
#undef TRUE
#define TRUE (1)
typedef short bool;
typedef int bool;
typedef uint32_t chtype;
typedef uint32_t attr_t;