noodstop is a signal arg, and should be void noodstop()

This commit is contained in:
ceriel 1993-11-12 16:53:24 +00:00
parent dbdf63595a
commit 03405742a3
3 changed files with 3 additions and 2 deletions

View file

@ -79,7 +79,7 @@ extern int creat();
/* Own routines */ /* Own routines */
enum f_path getpath(); enum f_path getpath();
enum f_path scan_end(); enum f_path scan_end();
extern int noodstop(); extern void noodstop();
extern char *getvar(); extern char *getvar();
extern char *keeps(); extern char *keeps();
extern char *basename(); extern char *basename();

View file

@ -51,7 +51,7 @@ FE=fe
INTABLES=sun3 INTABLES=sun3
LNTABLES=acc apc abc ocm m2 f2c vax4 i86 i386 m68k2 m68k4 pmds pmds4 mantra \ LNTABLES=acc apc abc ocm m2 f2c vax4 i86 i386 m68k2 m68k4 pmds pmds4 mantra \
m68020 z8000 pdp em22 em24 em44 6500 6800 6805 6809 i80 ns s2650 z80 \ m68020 z8000 pdp em22 em24 em44 6500 6800 6805 6809 i80 ns s2650 z80 \
sun2 xenix3 minix minixST sparc sparc_solaris arm sun2 xenix3 minix minixST sparc sparc_solaris arm
INCLUDES=-I$(TARGET_HOME)/h -I$(TARGET_HOME)/config -I$(SRC_DIR) INCLUDES=-I$(TARGET_HOME)/h -I$(TARGET_HOME)/config -I$(SRC_DIR)
CFLAGS= $(INCLUDES) $(COPTIONS) CFLAGS= $(INCLUDES) $(COPTIONS)
UCFLAGS= $(INCLUDES) $(UCOPTIONS) UCFLAGS= $(INCLUDES) $(UCOPTIONS)

View file

@ -140,6 +140,7 @@ do_flush() {
fflush(stderr) ; fflush(stderr) ;
} }
void
noodstop() { noodstop() {
quit(-3) ; quit(-3) ;
} }