diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:27:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-14 22:27:47 +0000 |
commit | 710c98d2befbed63a9ed06f7997b668dec9fb74f (patch) | |
tree | 86e497b7404bc77c6ee557ae51897d5c0a1080b1 /usr.sbin | |
parent | d4c7c8f24d85399a67e907099ef0f6b336e35a5e (diff) |
ARGSUSED before signal handler with unused signo
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/apmd/apmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/apmd/apmd.c b/usr.sbin/apmd/apmd.c index 95d8521b300..798d776c43d 100644 --- a/usr.sbin/apmd/apmd.c +++ b/usr.sbin/apmd/apmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apmd.c,v 1.30 2004/05/21 19:00:05 deraadt Exp $ */ +/* $OpenBSD: apmd.c,v 1.31 2004/09/14 22:27:46 deraadt Exp $ */ /* * Copyright (c) 1995, 1996 John T. Kohl @@ -71,6 +71,7 @@ void make_noise(int howmany); void do_etc_file(const char *file); void sockunlink(void); +/* ARGSUSED */ void sigexit(int signo) { |