diff options
Diffstat (limited to 'src/interfaces/ecpg/preproc/extern.h')
-rw-r--r-- | src/interfaces/ecpg/preproc/extern.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/preproc/extern.h b/src/interfaces/ecpg/preproc/extern.h index b6166f9bb9f..53da42cfb12 100644 --- a/src/interfaces/ecpg/preproc/extern.h +++ b/src/interfaces/ecpg/preproc/extern.h @@ -8,6 +8,11 @@ extern int yylineno, extern FILE *yyin, *yyout; +struct _include_path { char * path; + struct _include_path * next; + }; + +extern struct _include_path *include_paths; /* functions */ |