Decompile crashPrint

This commit is contained in:
Ryan Dwyer
2021-03-16 00:17:57 +10:00
parent 882a60e6e3
commit dd9ab4f674
3 changed files with 19 additions and 23 deletions
+1 -1
View File
@@ -6,6 +6,6 @@
void rmonproc();
bool rmonIsDisabled(void);
void crashPrint(char *format, ...);
void crashPrint(const char *format, ...);
#endif
+8
View File
@@ -0,0 +1,8 @@
#ifndef _IN_LIB_LIBC_XPRINTF_H
#define _IN_LIB_LIBC_XPRINTF_H
#include <ultra64.h>
typedef char *outfun(char*, const char*, size_t);
int _Printf(outfun prout, char *arg, const char *fmt, va_list args);
#endif