diff options
Diffstat (limited to 'src/bin/psql/rlstubs.c')
-rw-r--r-- | src/bin/psql/rlstubs.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/bin/psql/rlstubs.c b/src/bin/psql/rlstubs.c index b753fab430b..98a1f6ebf10 100644 --- a/src/bin/psql/rlstubs.c +++ b/src/bin/psql/rlstubs.c @@ -7,12 +7,14 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.2 1996/07/30 07:47:58 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.c,v 1.3 1996/11/11 05:55:32 momjian Exp $ * *------------------------------------------------------------------------- */ #include <stdio.h> +#include "rlstubs.h" + char * readline(char *prompt) { @@ -23,19 +25,19 @@ readline(char *prompt) } int -write_history() +write_history(char *dum) { return 0; } int -using_history() +using_history(void) { return 0; } int -add_history() +add_history(char *dum) { return 0; } |