Files
jsix/src/libraries/libc/stdio/fwrite.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

4 lines
126 B
C++

#include <stdio.h>
size_t fwrite(const void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream) { return 0; }