diff options
Diffstat (limited to 'src/bin/psql/common.h')
-rw-r--r-- | src/bin/psql/common.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h index e3924e9d92d..7d285d01ccd 100644 --- a/src/bin/psql/common.h +++ b/src/bin/psql/common.h @@ -8,18 +8,15 @@ char * xstrdup(const char *string); bool - setQFout(const char *fname, PsqlSettings *pset); + setQFout(const char *fname); char * simple_prompt(const char *prompt, int maxlen, bool echo); -const char * - interpolate_var(const char *name, PsqlSettings *pset); - PGresult * - PSQLexec(PsqlSettings *pset, const char *query); + PSQLexec(const char *query); bool - SendQuery(PsqlSettings *pset, const char *query); + SendQuery(const char *query); #endif /* COMMON_H */ |