This commit is contained in:
bellard
2001-12-17 21:57:01 +00:00
parent 2694c10547
commit b0b2d5d2e9
7 changed files with 49 additions and 62 deletions

10
stdbool.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef _STDBOOL_H
#define _STDBOOL_H
/* ISOC99 boolean */
#define bool _Bool
#define true 1
#define false 0
#endif /* _STDBOOL_H */