projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4cbf7b1
)
Fix incorrect declaration: static declarations cannot be local, and
author
Chris Hanson
<org/chris-hanson/cph>
Mon, 28 Jun 1993 02:26:17 +0000
(
02:26
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Mon, 28 Jun 1993 02:26:17 +0000
(
02:26
+0000)
ANSI declaration arglists cannot be empty.
v7/src/microcode/bchdrn.c
patch
|
blob
|
history
diff --git
a/v7/src/microcode/bchdrn.c
b/v7/src/microcode/bchdrn.c
index 07698043351b73b9a204f4621b58885ad08391de..23e60deff90b2a15291be0df96e0a164cf565658 100644
(file)
--- 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;
\f
+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;