diff options
| author | SammygoodTunes <56520787+SammygoodTunes@users.noreply.github.com> | 2025-04-12 18:04:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-12 18:04:36 +0200 |
| commit | 18af19e0ac0fa5975db45c9eadc7c2ffae1ff9ee (patch) | |
| tree | 4bd5d3b6c87f6076888442b97bd1ec1e5325b3f0 /libs/c | |
| parent | abc53b54ecb15e06a54634ea67be9369b858e9ec (diff) | |
Add stdio.h to c libs
Diffstat (limited to 'libs/c')
| -rw-r--r-- | libs/c/include/stdio.h | 6 |
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 |
