diff options
Diffstat (limited to 'src/include/stdio.h')
-rw-r--r-- | src/include/stdio.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/stdio.h b/src/include/stdio.h new file mode 100644 index 000000000..87244b3be --- /dev/null +++ b/src/include/stdio.h @@ -0,0 +1,16 @@ +#ifndef __STDIO_H +#define __STDIO_H + +#ifdef __cplusplus +extern "C" +{ +#endif + +int sprintf(char *str, const char * format, ...); + + +#ifdef __cplusplus +} +#endif + +#endif |