mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-07-08 20:24:49 -04:00
7 lines
198 B
C
7 lines
198 B
C
#include "libc64/aprintf.h"
|
|
#include "libultra/xprintf.h" /* _Printf */
|
|
|
|
extern int vaprintf(aprout_func_t* func, const char* fmt, va_list ap) {
|
|
return _Printf(func->prout_func, func, fmt, ap);
|
|
}
|