Add three prototypes for functions in history.h to shut up gcc -Wall.

This commit is contained in:
Guido van Rossum 2000-09-01 02:43:38 +00:00
parent b92b62771e
commit b9ce5ada37
1 changed files with 3 additions and 0 deletions

View 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