From 18af19e0ac0fa5975db45c9eadc7c2ffae1ff9ee Mon Sep 17 00:00:00 2001 From: SammygoodTunes <56520787+SammygoodTunes@users.noreply.github.com> Date: Sat, 12 Apr 2025 18:04:36 +0200 Subject: [PATCH] Add stdio.h to c libs --- libs/c/include/stdio.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 libs/c/include/stdio.h 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