]> granicus.if.org Git - python/commitdiff
Add three prototypes for functions in history.h to shut up gcc -Wall.
authorGuido van Rossum <guido@python.org>
Fri, 1 Sep 2000 02:43:38 +0000 (02:43 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 1 Sep 2000 02:43:38 +0000 (02:43 +0000)
Modules/readline.c

index 01482062f2a661647ac48104096766ad4d330126..a797d2951df9df15f59f78694142020d578c9c8c 100644 (file)
@@ -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