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/unvis | |
parent | 0e114b0322de025e2436a713d67e117d48cd8804 (diff) | |
download | FreeBSD-src-287f219c026740974299722090f229973cd2185f.zip FreeBSD-src-287f219c026740974299722090f229973cd2185f.tar.gz |
Main() returns int.
Diffstat (limited to 'usr.bin/unvis')
-rw-r--r-- | usr.bin/unvis/unvis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/unvis/unvis.c b/usr.bin/unvis/unvis.c index cdec94c..1549fd9 100644 --- a/usr.bin/unvis/unvis.c +++ b/usr.bin/unvis/unvis.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)unvis.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: unvis.c,v 1.3 1997/08/21 06:52:43 charnier Exp $"; #endif /* not lint */ #include <err.h> @@ -53,7 +53,7 @@ static const char rcsid[] = void process __P((FILE *, char *)); static void usage __P((void)); -void +int main(argc, argv) char *argv[]; { |