aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/stdlib.h
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2016-07-15 22:39:04 +0200
committerAlex Auvolat <alex@adnab.me>2016-07-15 22:39:04 +0200
commit7a1ea510a9fc43ccbc257601b149a90920332e13 (patch)
tree75ac252bb8ce029c62d6834e4ca927f59eaf5769 /src/lib/include/stdlib.h
parentd415aca695956c79110c88fa58c12bf55c0e2163 (diff)
downloadkogata-7a1ea510a9fc43ccbc257601b149a90920332e13.tar.gz
kogata-7a1ea510a9fc43ccbc257601b149a90920332e13.zip
Add Lua source, not compiled yet as libc/libm functions remain unimplemented
Diffstat (limited to 'src/lib/include/stdlib.h')
-rw-r--r--src/lib/include/stdlib.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/include/stdlib.h b/src/lib/include/stdlib.h
new file mode 100644
index 0000000..29d8661
--- /dev/null
+++ b/src/lib/include/stdlib.h
@@ -0,0 +1,29 @@
+#pragma once
+
+#include "malloc.h"
+
+#define EXIT_SUCCESS 0
+#define EXIT_FAILURE 255
+
+int rand(void);
+//int rand_r(unsigned int *seedp);
+void srand(unsigned int seed);
+
+#define RAND_MAX 1
+
+void abort() __attribute__((__noreturn__));
+
+
+double strtod(const char *nptr, char **endptr);
+float strtof(const char *nptr, char **endptr);
+long double strtold(const char *nptr, char **endptr);
+
+char *getenv(const char *name);
+
+int system(const char *command);
+
+int abs(int j);
+
+
+
+/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/