mirror of
https://git.wuffs.org/MWCC
synced 2025-07-23 23:25:53 +00:00
12 lines
281 B
C
12 lines
281 B
C
#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
|