add TinyC (tcc) to ISO

git-svn-id: svn://kolibrios.org@7540 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2018-11-07 17:54:29 +00:00
parent faad971adc
commit d642ea1590
28 changed files with 3360 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef _STDBOOL_H
#define _STDBOOL_H
/* ISOC99 boolean */
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif /* _STDBOOL_H */