mirror of
https://github.com/python/cpython.git
synced 2025-12-10 02:50:09 +00:00
Peter Schneider-Kamp <nowonder@nowonder.de>:
Remove some of GCC's warning in -Wstrict-prototypes mode. This closes SourceForge patch #101342.
This commit is contained in:
parent
562f62aa9b
commit
8ce159aef5
4 changed files with 12 additions and 18 deletions
|
|
@ -27,13 +27,13 @@
|
|||
#else
|
||||
#include <readline/readline.h> /* You may need to add an -I option to Setup */
|
||||
|
||||
extern int rl_parse_and_bind();
|
||||
extern int rl_read_init_file();
|
||||
extern int rl_insert_text();
|
||||
extern int rl_bind_key();
|
||||
extern int rl_bind_key_in_map();
|
||||
extern int rl_initialize();
|
||||
extern int add_history();
|
||||
extern int rl_parse_and_bind(char *);
|
||||
extern int rl_read_init_file(char *);
|
||||
extern int rl_insert_text(char *);
|
||||
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 Function *rl_event_hook;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue