Fixed the usual type mismatch for a signal handling function.
This commit is contained in:
parent
76878d1c84
commit
8f1b16e6cc
@ -230,7 +230,7 @@ void erroradd __P((int, char **, Errorclass, Errorclass));
|
||||
void filenames __P((int, Eptr **));
|
||||
void findfiles __P((int, Eptr *, int *, Eptr ***));
|
||||
void getignored __P((char *));
|
||||
void onintr __P((void));
|
||||
void onintr __P((int));
|
||||
int position __P((char *, char));
|
||||
void printerrors __P((boolean, int, Eptr []));
|
||||
char *substitute __P((char *, char, char));
|
||||
|
@ -36,7 +36,7 @@
|
||||
static char sccsid[] = "@(#)touch.c 8.1 (Berkeley) 6/6/93";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id$";
|
||||
"$Id: touch.c,v 1.4 1997/11/03 07:44:25 charnier Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
@ -725,7 +725,8 @@ mustwrite(base, n, preciousfile)
|
||||
}
|
||||
|
||||
void
|
||||
onintr()
|
||||
onintr(sig)
|
||||
int sig;
|
||||
{
|
||||
switch(inquire(terse
|
||||
? "\nContinue? "
|
||||
|
Loading…
x
Reference in New Issue
Block a user