diff options
author | 2002-03-14 01:26:25 +0000 | |
---|---|---|
committer | 2002-03-14 01:26:25 +0000 | |
commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/lib/libsa/exit.c | |
parent | compare pointers with NULL not 0 (diff) | |
download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip |
First round of __P removal in sys
Diffstat (limited to 'sys/lib/libsa/exit.c')
-rw-r--r-- | sys/lib/libsa/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/exit.c b/sys/lib/libsa/exit.c index 4b0e78a5fe7..7486a180968 100644 --- a/sys/lib/libsa/exit.c +++ b/sys/lib/libsa/exit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exit.c,v 1.4 1997/07/25 18:21:56 mickey Exp $ */ +/* $OpenBSD: exit.c,v 1.5 2002/03/14 01:27:07 millert Exp $ */ /* $NetBSD: exit.c,v 1.11 1996/12/01 20:22:19 pk Exp $ */ /*- @@ -44,7 +44,7 @@ panic(fmt /*, va_alist */) char *fmt; #endif { - extern void closeall __P((void)); + extern void closeall(void); va_list ap; static int paniced; |