summaryrefslogtreecommitdiff
path: root/src/stdio.h
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2021-10-15 22:41:18 +0200
committerAleksa Vučković <aleksav013@gmail.com>2021-10-15 22:41:18 +0200
commit1395dc42159d52ba36524fabe805897cd20bd01e (patch)
tree85ab198e0e2497c70eced46ba1e16e035d48eb24 /src/stdio.h
parent4528b2347ac72ffdabdbe4d9e7bf7789c81e664f (diff)
Adding string.h & printf()
Diffstat (limited to 'src/stdio.h')
-rw-r--r--src/stdio.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdio.h b/src/stdio.h
new file mode 100644
index 0000000..2d0aa8a
--- /dev/null
+++ b/src/stdio.h
@@ -0,0 +1,6 @@
+#ifndef STDIO_H
+#define STDIO_H
+
+void printf(char *str, ...);
+
+#endif