summaryrefslogtreecommitdiff
path: root/libc/init.c
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-06-05 13:47:01 -0500
committerDanny Holman <dholman@gymli.org>2024-06-05 13:47:01 -0500
commit5db066eb5184cc45e7634838b5b0b8c67cb2ae25 (patch)
tree9201570bb47cf57cd41f7efc8bf764b3ec70b802 /libc/init.c
parente5aff92e72a0d0e1c18ddaab80b2efe370f04588 (diff)
libc: create a skeleton libc and build targetsHEADmaster
Create build targets for a skeleton libc that only includes enough functionality to get a cross compiler running. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'libc/init.c')
-rw-r--r--libc/init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/init.c b/libc/init.c
new file mode 100644
index 0000000..b6c636b
--- /dev/null
+++ b/libc/init.c
@@ -0,0 +1,2 @@
+void libc_init(void) {
+}