Kaydet (Commit) 26418a90 authored tarafından Guido van Rossum's avatar Guido van Rossum

Trent Mick: use size_t instead of int where appropriate (call_readline()).

üst 2650a42f
...@@ -376,7 +376,7 @@ static char * ...@@ -376,7 +376,7 @@ static char *
call_readline(prompt) call_readline(prompt)
char *prompt; char *prompt;
{ {
int n; size_t n;
char *p, *q; char *p, *q;
RETSIGTYPE (*old_inthandler)(); RETSIGTYPE (*old_inthandler)();
old_inthandler = signal(SIGINT, onintr); old_inthandler = signal(SIGINT, onintr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment