mirror of
https://github.com/justinian/jsix.git
synced 2025-12-11 08:54:31 -08:00
5 lines
199 B
C++
5 lines
199 B
C++
#include <stdio.h>
|
|
|
|
int fprintf(FILE * restrict stream, const char * restrict format, ...) { return 0; }
|
|
int vfprintf(FILE * restrict stream, const char * restrict format, va_list arg) { return 0; }
|