meta: move photon/libc to root
This commit is contained in:
6
libc/stdio/vsprintf.c
Normal file
6
libc/stdio/vsprintf.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int vsprintf(char *buf, const char *restrict format, va_list arg)
|
||||
{
|
||||
return vsnprintf(buf, (size_t)-1, format, arg);
|
||||
}
|
||||
Reference in New Issue
Block a user