diff options
author | charnier <charnier@FreeBSD.org> | 1997-08-26 11:08:24 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-08-26 11:08:24 +0000 |
commit | 287f219c026740974299722090f229973cd2185f (patch) | |
tree | f04fd4f250537e84c0e2ef439795bb5b019b0a30 /usr.bin/systat | |
parent | 0e114b0322de025e2436a713d67e117d48cd8804 (diff) | |
download | FreeBSD-src-287f219c026740974299722090f229973cd2185f.zip FreeBSD-src-287f219c026740974299722090f229973cd2185f.tar.gz |
Main() returns int.
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/main.c b/usr.bin/systat/main.c index 6ddee0e..7b55805 100644 --- a/usr.bin/systat/main.c +++ b/usr.bin/systat/main.c @@ -42,7 +42,7 @@ static char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: main.c,v 1.6 1997/08/13 06:45:10 charnier Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -81,7 +81,7 @@ int CMDLINE; static WINDOW *wload; /* one line window for load average */ -void +int main(argc, argv) int argc; char **argv; |