diff options
author | Tom Lane | 1999-12-26 21:31:35 +0000 |
---|---|---|
committer | Tom Lane | 1999-12-26 21:31:35 +0000 |
commit | bc036a063d11c6be35ed86ca62ede2793ad45928 (patch) | |
tree | 596879f3496a8e86827daa9b9d8b7a8a6c075f4c /src | |
parent | a6a70315afb4da24a992b2078c46df1d5d19b5c0 (diff) |
Put back erroneously-removed definition of 'defines' variable.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/preproc/ecpg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c index a87c779f0ad..21b2bc34f02 100644 --- a/src/interfaces/ecpg/preproc/ecpg.c +++ b/src/interfaces/ecpg/preproc/ecpg.c @@ -11,10 +11,12 @@ #include "extern.h" -struct _include_path *include_paths; int ret_value = OK, autocommit = 0; +struct _include_path *include_paths = NULL; struct cursor *cur = NULL; struct typedefs *types = NULL; +struct _defines *defines = NULL; + static void usage(char *progname) |