diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-12-01 16:34:00 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-12-01 16:34:00 -0500 |
commit | 3295f82022ff0da95c96d8ca763e1d8902345466 (patch) | |
tree | bc3ce9d11b1fd3d90e278d6c0ed91ff3add530e6 /src/interfaces/ecpg/preproc/variable.c | |
parent | 2d34ad84303181111c6f0747186857ff50106267 (diff) | |
download | postgresql-3295f82022ff0da95c96d8ca763e1d8902345466.tar.gz postgresql-3295f82022ff0da95c96d8ca763e1d8902345466.zip |
Rename ecpg's various "extern.h" files to have distinct names.
This should reduce confusion, and in particular make it safe to
copy typename.c into preproc/ and compile it there.
This doesn't affect anything outside ecpg, and particularly not
end users, because these files don't get installed; they just
exist to share declarations among the .c files of each subdirectory.
Discussion: https://postgr.es/m/31364.1543511708@sss.pgh.pa.us
Diffstat (limited to 'src/interfaces/ecpg/preproc/variable.c')
-rw-r--r-- | src/interfaces/ecpg/preproc/variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/variable.c b/src/interfaces/ecpg/preproc/variable.c index 39bf3b2474e..a953498c1c9 100644 --- a/src/interfaces/ecpg/preproc/variable.c +++ b/src/interfaces/ecpg/preproc/variable.c @@ -2,7 +2,7 @@ #include "postgres_fe.h" -#include "extern.h" +#include "preproc_extern.h" static struct variable *allvariables = NULL; |