diff options
Diffstat (limited to 'src/stdio/vsnprintf.c')
-rw-r--r-- | src/stdio/vsnprintf.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdio/vsnprintf.c b/src/stdio/vsnprintf.c new file mode 100644 index 00000000..7c5a1e03 --- /dev/null +++ b/src/stdio/vsnprintf.c @@ -0,0 +1,10 @@ +#include <stdio.h> +#include "stdarg.h" + +int vsnprintf(char * restrict s, size_t n, va_list ap) +{ +} + +/* +STDC(199901) +*/ |