summaryrefslogtreecommitdiff
path: root/src/user/lib/include/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/lib/include/stdlib.h')
-rw-r--r--src/user/lib/include/stdlib.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user/lib/include/stdlib.h b/src/user/lib/include/stdlib.h
index 7f6630d..e2e3996 100644
--- a/src/user/lib/include/stdlib.h
+++ b/src/user/lib/include/stdlib.h
@@ -1,8 +1,13 @@
#pragma once
#include <stddef.h>
+#include <stdlib.h>
#ifndef NO_MALLOC_H
#include <user/lib/vendor/dlmalloc/malloc.h>
#endif
_Noreturn void abort(void);
+
+int mkstemp(char *template);
+char *getenv(const char *name);
+int system(const char *cmd);