summaryrefslogtreecommitdiff
path: root/api/libc/stdlib.h
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2026-05-26 21:32:27 +0000
committerAda Christine <adachristine18@gmail.com>2026-05-26 21:32:27 +0000
commita10aabfcd52f702057316018cd7847ab2bfe4aa1 (patch)
treecc4652d2b602798934e8a48b4939cfb20eda1989 /api/libc/stdlib.h
parent90c29fdde317c39384011a6ba97077c138f13ad6 (diff)
we're bringing kjarna back and not doing the crazy stuff with trying to have task management during efi. that was a bit extra.kjarna
Diffstat (limited to 'api/libc/stdlib.h')
-rw-r--r--api/libc/stdlib.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/api/libc/stdlib.h b/api/libc/stdlib.h
deleted file mode 100644
index d1f3d3b..0000000
--- a/api/libc/stdlib.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#pragma once
-
-#include <stddef.h>
-
-size_t mbstowcs(wchar_t *dst, const char *src, size_t length);
-void *malloc(size_t size);
-void *calloc(size_t count, size_t size);
-void free(void *block);
-