[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:
Justin C. Miller
2022-02-09 18:51:02 -08:00
parent 57b2d6dbd8
commit c0ae77cd64
9 changed files with 39 additions and 0 deletions

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