#include <stdio.h>
#include <stdlib.h>
Include dependency graph for yynull.c:

Go to the source code of this file.
Functions | |
| void | _YYnull (char *file, int line) |
|
||||||||||||
|
Definition at line 5 of file yynull.c. References abort(), fflush(), file, fprintf(), line, and stderr. 00005 {
00006 fprintf(stderr, "null pointer dereferenced:");
00007 if (file)
00008 fprintf(stderr, " file %s,", file);
00009 fprintf(stderr, " line %d\n", line);
00010 fflush(stderr);
00011 abort();
00012 }
|
Here is the call graph for this function:

1.3.9.1