X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Tools%2Fnativelib%2Flogging.c;h=16e6f70e43669eb33b9f9d98781cce9766f8fcce;hb=1f733f85261667f86a083a85bc07e736b44dfbe2;hp=c2d8a76a6140719b4e9f866cff83be27aec5a3aa;hpb=083c31409b9f25c96807ab8fef8ac79e8fe4cf9e;p=tpg%2Facess2.git diff --git a/Tools/nativelib/logging.c b/Tools/nativelib/logging.c index c2d8a76a..16e6f70e 100644 --- a/Tools/nativelib/logging.c +++ b/Tools/nativelib/logging.c @@ -53,6 +53,11 @@ void Log_Log(const char *Ident, const char *Message, ...) void Log_Debug(const char *Ident, const char *Message, ...) PUTERR("37", "d") +void Panic(const char *Message, ...) { + const char *Ident = ""; + PUTERR("35", "k") + exit(-1); +} void Warning(const char *Message, ...) { const char *Ident = ""; PUTERR("33", "W")