aboutsummaryrefslogtreecommitdiff
path: root/std/stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'std/stdlib.c')
-rw-r--r--std/stdlib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/std/stdlib.c b/std/stdlib.c
new file mode 100644
index 0000000..b50c0c5
--- /dev/null
+++ b/std/stdlib.c
@@ -0,0 +1,5 @@
+#include <unistd.h>
+
+void wait(long long x) {
+ sleep(x);
+}