mirror of
https://github.com/fluencelabs/musl
synced 2025-06-23 19:52:01 +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);
|
||
|
}
|