summaryrefslogtreecommitdiff
path: root/src/libc/stddef.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-14 15:13:02 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-14 15:13:02 +0200
commitf31f7960bd260cb90ffdd766393d51bd85a547d1 (patch)
tree6a9404909186c22c6bc989624b2488830e50e64e /src/libc/stddef.h
parent36bc53591247bbd16e42bbf7d5d4744a5416dfa8 (diff)
downloadabaos-f31f7960bd260cb90ffdd766393d51bd85a547d1.tar.gz
abaos-f31f7960bd260cb90ffdd766393d51bd85a547d1.tar.bz2
removed stddef.h and limits.h (come with the compiler header files)
added a stub stdint.h (only sometimes comes with the compiler) added a guide on cross compiling adapted to cross compilation, for now tcc works
Diffstat (limited to 'src/libc/stddef.h')
-rw-r--r--src/libc/stddef.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libc/stddef.h b/src/libc/stddef.h
deleted file mode 100644
index 4333661..0000000
--- a/src/libc/stddef.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef STDDEF_H
-#define STDDEF_H
-
-#include <stdint.h>
-
-#define NULL ( (void *)0 )
-
-typedef uint32_t size_t;
-
-#endif /* STDDEF_H */