diff options
Diffstat (limited to 'Modules/readline.c')
-rw-r--r-- | Modules/readline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/readline.c b/Modules/readline.c index 119f7f9..a0a88eb 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -396,7 +396,7 @@ flex_complete(char *text, int start, int end) /* Helper to initialize GNU readline properly. */ static void -setup_readline() +setup_readline(void) { rl_readline_name = "python"; /* Force rebind of TAB to insert-tab */ @@ -485,7 +485,7 @@ static char doc_module[] = "Importing this module enables command line editing using GNU readline."; DL_EXPORT(void) -initreadline() +initreadline(void) { PyObject *m; |