mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 00:51:41 +00:00
13 lines
171 B
C
13 lines
171 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int printf(const char *fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vprintf(fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|