lint
This commit is contained in:
parent
704a26c5f3
commit
df840d911f
|
@ -36,7 +36,7 @@ extern int errno;
|
|||
#include <math.h>
|
||||
|
||||
#ifndef __STDC__
|
||||
extern double fmod();
|
||||
extern double fmod PROTO((double, double));
|
||||
#endif
|
||||
|
||||
#ifdef HUGE_VAL
|
||||
|
|
|
@ -126,9 +126,10 @@ intrcheck()
|
|||
|
||||
static int interrupted;
|
||||
|
||||
/* ARGSUSED */
|
||||
static SIGTYPE
|
||||
intcatcher(sig)
|
||||
int sig;
|
||||
int sig; /* Not used by required by interface */
|
||||
{
|
||||
interrupted = 1;
|
||||
signal(SIGINT, intcatcher);
|
||||
|
|
|
@ -315,8 +315,6 @@ builtin_input(self, v)
|
|||
{
|
||||
FILE *in = sysgetfile("stdin", stdin);
|
||||
FILE *out = sysgetfile("stdout", stdout);
|
||||
node *n;
|
||||
int err;
|
||||
int c;
|
||||
object *m, *d;
|
||||
flushline();
|
||||
|
|
Loading…
Reference in New Issue