diff options
| author | Guido van Rossum <guido@python.org> | 2000-09-01 02:43:38 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2000-09-01 02:43:38 +0000 |
| commit | b9ce5ada37f271cd2e9ec67f86a82a166f1e1296 (patch) | |
| tree | 38bf877a0c47f866a32f6cf76ea1f5b9a46ef304 /Modules | |
| parent | b92b62771eb63ac76d9cdc25dd74f8c5a4f45567 (diff) | |
| download | cpython-git-b9ce5ada37f271cd2e9ec67f86a82a166f1e1296.tar.gz | |
Add three prototypes for functions in history.h to shut up gcc -Wall.
Diffstat (limited to 'Modules')
| -rw-r--r-- | Modules/readline.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/readline.c b/Modules/readline.c index 01482062f2..a797d2951d 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -34,6 +34,9 @@ extern int rl_bind_key(int, Function *); extern int rl_bind_key_in_map(int, Function *, Keymap); extern int rl_initialize(void); extern int add_history(char *); +extern int read_history(char *); +extern int write_history(char *); +extern int history_truncate_file(char *, int); extern Function *rl_event_hook; #endif |
