init commit

This commit is contained in:
Faynot
2026-07-07 20:35:07 +03:00
commit 38cc34a6e9
33 changed files with 659 additions and 0 deletions

9
include/stdbool.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _ELIBC_STDBOOL_H
#define _ELIBC_STDBOOL_H
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif