diff options
author | Danny Holman <dholman@gymli.org> | 2025-10-19 21:43:56 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2025-10-19 21:43:56 -0500 |
commit | b2d5436d35ce223f9d8b2d8d598c1e0b5e053c4a (patch) | |
tree | bbeb08cdb5d1ddb0ece37025d7c13b1091b4e32d /include/TODO | |
parent | build: align all build files (diff) | |
download | box-b2d5436d35ce223f9d8b2d8d598c1e0b5e053c4a.tar.gz box-b2d5436d35ce223f9d8b2d8d598c1e0b5e053c4a.tar.zst box-b2d5436d35ce223f9d8b2d8d598c1e0b5e053c4a.zip |
include: create the basics of a libc
Create the most basic files for a POSIX-conformant standard C library
implementation. These basic files should be enough to get the bootloader
and kernel off the ground and not much else. Additional testing should
be done on these files.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to '')
-rw-r--r-- | include/TODO | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/TODO b/include/TODO new file mode 100644 index 0000000..a845564 --- /dev/null +++ b/include/TODO @@ -0,0 +1,4 @@ +* elf.h has lots of missing definitions +* stdint.h and stddef.h are missing a 32 bit zarch check +* LOTS of testing needs to happen with various architectures +* everything is missing the "extern C" bit that allows for C++ |