diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 21:19:20 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 21:19:20 +0000 |
commit | f201158bc7b302f2c64efddd072ac22b68b40f3e (patch) | |
tree | f3bbd42ca7dcff9d89a686b79eeeb57e3235954c /usr.bin/vmstat/vmstat.c | |
parent | 0eaf6d68ac8f221cb85f67e548786a59fcc8e2f1 (diff) |
protos
Diffstat (limited to 'usr.bin/vmstat/vmstat.c')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 0096420bb51..03ccd416bc2 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -1,5 +1,5 @@ /* $NetBSD: vmstat.c,v 1.29.4.1 1996/06/05 00:21:05 cgd Exp $ */ -/* $OpenBSD: vmstat.c,v 1.77 2003/06/03 02:56:22 millert Exp $ */ +/* $OpenBSD: vmstat.c,v 1.78 2003/06/25 21:18:08 deraadt Exp $ */ /* * Copyright (c) 1980, 1986, 1991, 1993 @@ -363,7 +363,7 @@ dovmstat(u_int interval, int reps) { struct vmtotal total; time_t uptime, halfuptime; - void needhdr(); + void needhdr(int); int mib[2]; struct clockinfo clkinfo; size_t size; @@ -465,7 +465,7 @@ printhdr(void) * Force a header to be prepended to the next output. */ void -needhdr(void) +needhdr(int signo) { hdrcnt = 1; |