wut/include/coreinit/debug.h

23 lines
296 B
C
Raw Normal View History

2016-01-06 00:24:54 +01:00
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
void
OSConsoleWrite(const char *msg, uint32_t size);
void
OSReport(const char *fmt, ...);
void
OSPanic(const char *file, uint32_t line, const char *fmt, ...);
void
OSFatal(const char *msg);
#ifdef __cplusplus
}
#endif