You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
22 lines
534 B
C
22 lines
534 B
C
#include "stdarg.h"
|
|
#include "macros.h"
|
|
|
|
#if LIBULTRA_VERSION >= OS_VER_J
|
|
void __osSyncVPrintf(UNUSED const char *fmt, UNUSED va_list args) {
|
|
// these functions intentionally left blank. ifdeffed out in rom release
|
|
}
|
|
#endif
|
|
|
|
#if LIBULTRA_VERSION > OS_VER_D
|
|
void osSyncPrintf(UNUSED const char *fmt, ...) {
|
|
UNUSED int ans;
|
|
UNUSED va_list ap;
|
|
// these functions intentionally left blank. ifdeffed out in rom release
|
|
}
|
|
|
|
void rmonPrintf(UNUSED const char *fmt, ...) {
|
|
UNUSED int ans;
|
|
UNUSED va_list ap;
|
|
}
|
|
#endif
|