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

lint

üst 704a26c5
...@@ -36,7 +36,7 @@ extern int errno; ...@@ -36,7 +36,7 @@ extern int errno;
#include <math.h> #include <math.h>
#ifndef __STDC__ #ifndef __STDC__
extern double fmod(); extern double fmod PROTO((double, double));
#endif #endif
#ifdef HUGE_VAL #ifdef HUGE_VAL
......
...@@ -126,9 +126,10 @@ intrcheck() ...@@ -126,9 +126,10 @@ intrcheck()
static int interrupted; static int interrupted;
/* ARGSUSED */
static SIGTYPE static SIGTYPE
intcatcher(sig) intcatcher(sig)
int sig; int sig; /* Not used by required by interface */
{ {
interrupted = 1; interrupted = 1;
signal(SIGINT, intcatcher); signal(SIGINT, intcatcher);
......
...@@ -315,8 +315,6 @@ builtin_input(self, v) ...@@ -315,8 +315,6 @@ builtin_input(self, v)
{ {
FILE *in = sysgetfile("stdin", stdin); FILE *in = sysgetfile("stdin", stdin);
FILE *out = sysgetfile("stdout", stdout); FILE *out = sysgetfile("stdout", stdout);
node *n;
int err;
int c; int c;
object *m, *d; object *m, *d;
flushline(); flushline();
......
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