mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
[libc] Add stubbed-out stdio and libdl functions
In order to fix link errors with libunwind, stub out these functions for now.
This commit is contained in:
3
src/libraries/libc/stdio/fwrite.cpp
Normal file
3
src/libraries/libc/stdio/fwrite.cpp
Normal file
@@ -0,0 +1,3 @@
|
||||
#include <stdio.h>
|
||||
|
||||
size_t fwrite(const void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream) { return 0; }
|
||||
Reference in New Issue
Block a user