Files
ipxe/src/include/stdbool.h
Michael Brown ffb5fe4ced [libc] Add stdbool.h standard header
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2017-04-10 16:12:53 +01:00

11 lines
155 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#define bool _Bool
#define true 1
#define false 0
#endif /* _STDBOOL_H */