Fix _Printf definition

This commit is contained in:
Cuyler36
2023-02-22 17:12:33 -05:00
parent 90097228a2
commit 4448bb2494
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
extern "C"{
#endif
extern int _Printf(void* (*prout_func)(void*, const char*, int), char* buf, const char* fmt, va_list ap);
extern int _Printf(void* (*prout_func)(void*, const char*, int), void* arg, const char* fmt, va_list ap);
#ifdef __cplusplus
}
+1 -1
View File
@@ -1,5 +1,5 @@
#include "libultra/xprintf.h"
extern int _Printf(void* (*prout_func)(void*, const char*, int), char* buf, const char* fmt, va_list ap) {
extern int _Printf(void* (*prout_func)(void*, const char*, int), void* arg, const char* fmt, va_list ap) {
}