diff options
Diffstat (limited to 'io/wrap/vfprintf.c')
-rw-r--r-- | io/wrap/vfprintf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/io/wrap/vfprintf.c b/io/wrap/vfprintf.c new file mode 100644 index 0000000..ae49dc3 --- /dev/null +++ b/io/wrap/vfprintf.c @@ -0,0 +1,7 @@ +#define NO_OPAQUE_TYPE +#include "io.h" + +int _vfprintf_wrap(FILE *stream, char const *restrict format, va_list arg) +{ + return vfprintf(stream, format, arg); +} |