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/ecpglib/misc.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/ecpglib/misc.c')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ecpglib/misc.c b/src/interfaces/ecpg/ecpglib/misc.c index be9cac6e7b4..a26dfdb361f 100644 --- a/src/interfaces/ecpg/ecpglib/misc.c +++ b/src/interfaces/ecpg/ecpglib/misc.c @@ -9,7 +9,7 @@ #include "ecpgtype.h" #include "ecpglib.h" #include "ecpgerrno.h" -#include "extern.h" +#include "ecpglib_extern.h" #include "sqlca.h" #include "pgtypes_numeric.h" #include "pgtypes_date.h" |