diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-04 16:54:05 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-08-04 16:54:05 +0000 |
commit | 6db6714ffcf04b4593d7998635e998530f517329 (patch) | |
tree | 289732f31feefe89905d4b0b61bdaa88e6d85b8a /src | |
parent | 3467758809718a5c7b745ec9d0ffdbe129568e6a (diff) | |
download | postgresql-6db6714ffcf04b4593d7998635e998530f517329.tar.gz postgresql-6db6714ffcf04b4593d7998635e998530f517329.zip |
Remove redeclaration of struct sqlca_t --- unnecessary and provokes
warnings on some compilers.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index a60b4f0dee1..ced6da563d0 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -1,7 +1,7 @@ /* * this is a small part of c.h since we don't want to leak all postgres * definitions into ecpg programs - * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.68 2006/08/02 13:43:23 meskes Exp $ + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.69 2006/08/04 16:54:05 tgl Exp $ */ #ifndef _ECPGLIB_H @@ -38,8 +38,6 @@ extern "C" { #endif -struct sqlca_t; - void ECPGinit_sqlca(struct sqlca_t *sqlca); void ECPGdebug(int, FILE *); bool ECPGstatus(int, const char *); |