mirror of
https://github.com/fluencelabs/musl
synced 2025-05-30 16:11:40 +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);
|
||
|
}
|