From 82cc274b6aa358bab5de54f85edab1727916eb33 Mon Sep 17 00:00:00 2001 From: Tharo <17233964+Thar0@users.noreply.github.com> Date: Wed, 11 Aug 2021 03:15:31 +0100 Subject: Sort boot files (#260) --- src/boot_O2_g3/syncprintf.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/boot_O2_g3/syncprintf.c') 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, ...) { } -- cgit v1.2.3