diff options
| author | Marc G. Fournier | 1996-11-11 12:14:45 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1996-11-11 12:14:45 +0000 |
| commit | 2bdded3540a9723c240152a37627846433e61234 (patch) | |
| tree | e12a14df0e0deaa7f2d86d51bf424c8e819a0625 /src/bin | |
| parent | 6913c8b4a49873139750a708178920bb74aeb9d5 (diff) | |
Various cleanups from D'Arcy
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/psql/rlstubs.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/bin/psql/rlstubs.c b/src/bin/psql/rlstubs.c index 98a1f6ebf10..05d527da690 100644 --- a/src/bin/psql/rlstubs.c +++ b/src/bin/psql/rlstubs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.3 1996/11/11 05:55:32 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.4 1996/11/11 12:14:21 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -15,8 +15,13 @@ #include "rlstubs.h" +extern char *readline(const char *); +extern int write_history(const char *); +extern int using_history(void); +extern int add_history(const char *); + char * -readline(char *prompt) +readline(const char *prompt) { static char buf[500]; |
