loongarch64: add new syscall numbers
[musl.git] / src / stdio / swprintf.c
blobf75eb112e7c0d7e22b79c03204cc00c6af7575e7
1 #include <stdarg.h>
2 #include <wchar.h>
4 int swprintf(wchar_t *restrict s, size_t n, const wchar_t *restrict fmt, ...)
6 int ret;
7 va_list ap;
8 va_start(ap, fmt);
9 ret = vswprintf(s, n, fmt, ap);
10 va_end(ap);
11 return ret;