MWCC/includes/compiler/PPCError.h

12 lines
281 B
C
Raw Normal View History

#ifndef COMPILER_PPCERROR_H
#define COMPILER_PPCERROR_H
#include "compiler/common.h"
extern void PPCError_Error(int code, ...);
extern void PPCError_Warning(int code, ...);
extern void PPCError_Message(char *format, ...);
extern void PPCError_ErrorTerm(short code, ...);
#endif