blob: 0f00ff9481eba33174bc9af0530bbcff0a7efd67 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef SYNC_PRINTF_H
#define SYNC_PRINTF_H
#include "ultra64.h"
void osSyncPrintfUnused(const char* fmt, ...);
void osSyncPrintf(const char* fmt, ...);
void rmonPrintf(const char* fmt, ...);
#endif
|