Morph-SynRJ

view sys_assert.cxx @ 0:22de913c2d84

morph-synrj intro
author "Cedric Pinson <cedric.pinson@alcove.fr> <mornifle@plopbyte.net>"
date Tue Nov 27 15:23:52 2007 +0100 (2007-11-27)
parents
children
line source
1 #include <cstdlib>
2 #include <cstdio>
4 void sysAssertInternal(const char* text, const char* file, int line)
5 {
6 fprintf(stderr, text, file, line);
7 *((const char**)0) = text;
8 exit(1);
9 }