From bfc21419d0d9b65bdcd0aea3967c4590cbadc366 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 28 Jun 1993 02:26:17 +0000 Subject: [PATCH] Fix incorrect declaration: static declarations cannot be local, and ANSI declaration arglists cannot be empty. --- v7/src/microcode/bchdrn.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/bchdrn.c b/v7/src/microcode/bchdrn.c index 076980433..23e60deff 100644 --- a/v7/src/microcode/bchdrn.c +++ b/v7/src/microcode/bchdrn.c @@ -1,6 +1,6 @@ /* -*- C -*- -$Id: bchdrn.c,v 1.5 1993/02/06 05:28:52 gjr Exp $ +$Id: bchdrn.c,v 1.6 1993/06/28 02:26:17 cph Exp $ Copyright (c) 1991-1993 Massachusetts Institute of Technology @@ -104,11 +104,12 @@ static unsigned long * drone_version, * wait_mask; static jmp_buf abort_point; static pid_t boss_pid; +static void EXFUN (shutdown, (int sig)); + static void DEFUN (posix_signal, (signum, handler), int signum AND void EXFUN ((*handler), ())) { - static void EXFUN (shutdown, ()); struct sigaction new; new.sa_handler = handler; -- 2.25.1