diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-01-26 17:27:32 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-01-26 17:27:32 +0000 |
commit | 1d8a696fd555a664961f9d365de29dcc6689e15a (patch) | |
tree | 0214e5f44e9b38b320e7827b0506c845a3c7f892 /src/bin/psql/psql.c | |
parent | d90a426e35a2b92c78f1a2156a1e9aa3967ab041 (diff) | |
download | postgresql-1d8a696fd555a664961f9d365de29dcc6689e15a.tar.gz postgresql-1d8a696fd555a664961f9d365de29dcc6689e15a.zip |
Remove #include "rlstubs.h", since it doesn't exist anymore
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r-- | src/bin/psql/psql.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 19a549c33a3..e71fbe54e79 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.54 1997/01/25 23:54:02 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.55 1997/01/26 17:27:32 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -30,9 +30,7 @@ #include "strdup.h" #endif -#ifndef HAVE_LIBREADLINE -# include "rlstubs.h" -#else +#ifdef HAVE_LIBREADLINE # ifdef HAVE_READLINE_H # include <readline.h> # if defined(HAVE_HISTORY) || defined(HAVE_LIBHISTORY) |