summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdlib/system.c')
-rw-r--r--lib/libc/stdlib/system.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c
new file mode 100644
index 00000000..4f560ce1
--- /dev/null
+++ b/lib/libc/stdlib/system.c
@@ -0,0 +1,7 @@
+#include <stdlib.h>
+
+int system(const char *command)
+{
+ // TODO
+ return 0;
+}