summaryrefslogtreecommitdiff
path: root/src/boot_O2_g3/syncprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot_O2_g3/syncprintf.c')
-rw-r--r--src/boot_O2_g3/syncprintf.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/boot_O2_g3/syncprintf.c b/src/boot_O2_g3/syncprintf.c
index c1f6341f9..1cbceb595 100644
--- a/src/boot_O2_g3/syncprintf.c
+++ b/src/boot_O2_g3/syncprintf.c
@@ -1,10 +1,11 @@
#include "global.h"
-// This file contains print functions that are used by fault.c, so they are placed in the fault module
-
-void __osSyncVPrintf(UNK_TYPE4 param_1, ...) {
+// This isn't a vprintf since it doesn't take a va_list
+void __osSyncVPrintf(const char* fmt, ...) {
}
-void osSyncPrintf(char* str, ...) {
+
+void osSyncPrintf(const char* fmt, ...) {
}
-void rmonPrintf(UNK_TYPE4 param_1, ...) {
+
+void rmonPrintf(const char* fmt, ...) {
}