aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/std.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-14 00:14:25 +0900
committernsfisis <nsfisis@gmail.com>2025-09-14 01:18:50 +0900
commit90246b99595e86e5e6fe41973db1a00171cf0462 (patch)
treefbf0be4652f5e245d623c85d944dcc5772912663 /src/std.h
parentec63d7d6d2f123239ba436ffcb2638f27f3b7d59 (diff)
downloadducc-90246b99595e86e5e6fe41973db1a00171cf0462.tar.gz
ducc-90246b99595e86e5e6fe41973db1a00171cf0462.tar.zst
ducc-90246b99595e86e5e6fe41973db1a00171cf0462.zip
feat: include <stdlib.h>
Diffstat (limited to 'src/std.h')
-rw-r--r--src/std.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/std.h b/src/std.h
index 2d7d8c8..140eea8 100644
--- a/src/std.h
+++ b/src/std.h
@@ -3,13 +3,8 @@
#include <stddef.h>
-int atoi(const char*);
-void* calloc(size_t, size_t);
-void exit(int);
+// TODO: <stdlib.h>
int mkstemps(char*, int);
-void* realloc(void*, size_t);
-long strtol(const char*, char**, int);
-int system(const char*);
#define assert(x) \
do { \