diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-03-18 22:15:44 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-03-18 22:15:44 +0000 |
commit | cf1cf8964925cd36dc7bf034a968a4e44ede382a (patch) | |
tree | f80bcdd31d3af6f1783ea382e277130db22d6093 /src/bin/psql/help.h | |
parent | 9384dc6e597baf53d3aa07343163ec7011e6181a (diff) | |
download | postgresql-cf1cf8964925cd36dc7bf034a968a4e44ede382a.tar.gz postgresql-cf1cf8964925cd36dc7bf034a968a4e44ede382a.zip |
Make the printing code somewhat more independent by not relying on
functions and global variables from the rest of psql. Also clean up some
data type mismatches created by the last pager patch.
Diffstat (limited to 'src/bin/psql/help.h')
-rw-r--r-- | src/bin/psql/help.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.h b/src/bin/psql/help.h index 7b3078dd85d..8b247d0fede 100644 --- a/src/bin/psql/help.h +++ b/src/bin/psql/help.h @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.h,v 1.11 2002/11/08 19:12:21 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.h,v 1.12 2003/03/18 22:15:44 petere Exp $ */ #ifndef HELP_H #define HELP_H @@ -12,7 +12,7 @@ void usage(void); void slashUsage(unsigned short int pager); -void helpSQL(const char *topic, bool pager); +void helpSQL(const char *topic, unsigned short int pager); void print_copyright(void); |