mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
Fix _Printf definition
This commit is contained in:
@@ -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,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) {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user