diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2023-08-21 11:43:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-21 11:43:06 -0700 |
| commit | 021809c0ec3b9c2b877c130389d7a4e2292824f8 (patch) | |
| tree | 0ba2e00bf8af5ce3fa0aa87a6f129359e704b672 /src | |
| parent | 0b49159da19358a3695ff7b19ba58dcd37a1f438 (diff) | |
syncprintf OK (#66)
* syncprintf OK
* UNUSED
Diffstat (limited to 'src')
| -rw-r--r-- | src/boot/syncprintf.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/boot/syncprintf.c b/src/boot/syncprintf.c new file mode 100644 index 0000000..643123c --- /dev/null +++ b/src/boot/syncprintf.c @@ -0,0 +1,13 @@ +#include "ultra64.h" +#include "attributes.h" +#include "libc64/aprintf.h" +#include "libc/stdarg.h" + +void osSyncPrintfUnused(UNUSED const char* fmt, ...) { +} + +void osSyncPrintf(UNUSED const char* fmt, ...) { +} + +void rmonPrintf(UNUSED const char* fmt, ...) { +} |
