The Quake III Arena sources as originally released under the GPL license on August 20, 2005.
This commit is contained in:
commit
dbe4ddb103
1409 changed files with 806066 additions and 0 deletions
12
lcc/lib/yynull.c
Normal file
12
lcc/lib/yynull.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
void _YYnull(char *file, int line) {
|
||||
fprintf(stderr, "null pointer dereferenced:");
|
||||
if (file)
|
||||
fprintf(stderr, " file %s,", file);
|
||||
fprintf(stderr, " line %d\n", line);
|
||||
fflush(stderr);
|
||||
abort();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue