summaryrefslogtreecommitdiff
path: root/src/bin/psql/psql.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1996-11-11 05:55:33 +0000
committerBruce Momjian <bruce@momjian.us>1996-11-11 05:55:33 +0000
commit42a344683a3a9d4ca9a87ea0c6ddf7c5cbe953ea (patch)
treea773731c2f0e7d70cdacb32d9a82bcb830d6a3ce /src/bin/psql/psql.c
parent13d44b4aac579e5748d6909b7ef010a4f920df13 (diff)
Remove warnings when readline is not used.
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r--src/bin/psql/psql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c
index a7544dc2d90..ce22a4ae004 100644
--- a/src/bin/psql/psql.c
+++ b/src/bin/psql/psql.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.27 1996/11/10 03:04:12 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.28 1996/11/11 05:55:30 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -26,7 +26,7 @@
#include "psqlHelp.h"
#ifdef NOREADLINE
-extern char *readline(char *); /* in rlstubs.c */
+#include "rlstubs.h"
#else
/* from the GNU readline library */
#ifdef OLD_READLINE