mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 15:41:36 +00:00
7 lines
100 B
C
7 lines
100 B
C
#include <stdio.h>
|
|
|
|
int vprintf(const char *fmt, va_list ap)
|
|
{
|
|
return vfprintf(stdout, fmt, ap);
|
|
}
|