summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSammygoodTunes <56520787+SammygoodTunes@users.noreply.github.com>2025-04-12 18:04:36 +0200
committerGitHub <noreply@github.com>2025-04-12 18:04:36 +0200
commit18af19e0ac0fa5975db45c9eadc7c2ffae1ff9ee (patch)
tree4bd5d3b6c87f6076888442b97bd1ec1e5325b3f0
parentabc53b54ecb15e06a54634ea67be9369b858e9ec (diff)
Add stdio.h to c libs
-rw-r--r--libs/c/include/stdio.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/c/include/stdio.h b/libs/c/include/stdio.h
new file mode 100644
index 00000000..3eb4cf94
--- /dev/null
+++ b/libs/c/include/stdio.h
@@ -0,0 +1,6 @@
+#ifndef _C_STDIO_H
+#define _C_STDIO_H
+
+extern int sprintf(char *__restrict s, const char *__restrict format, ...);
+
+#endif