blob: c9334eaca1c8a2d566c0a80539eead5dad89aad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*-------------------------------------------------------------------------
*
* rlstubs.h
* stub routines when compiled without readline and history libraries
*
* Copyright (c) 1994-5, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/rlstubs.h,v 1.1 1996/11/11 05:55:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
extern char *readline(char *prompt);
extern int write_history(char *dum);
extern int using_history(void);
extern int add_history(char *dum);
|