blob: b406d4e1f88507ac3dbbe6bc3f4484f3e9d81361 [file] [log] [blame]
#include <stdarg.h>
#include <stdio.h>
int sprintf(char* restrict s, const char* restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vsprintf(s, fmt, ap);
va_end(ap);
return ret;
}