Files
jsix/src/libraries/libc/stdio/fprintf.cpp
Justin C. Miller c0ae77cd64 [libc] Add stubbed-out stdio and libdl functions
In order to fix link errors with libunwind, stub out these functions for
now.
2022-02-09 18:51:02 -08:00

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; }