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/vgrind | |
parent | 0e114b0322de025e2436a713d67e117d48cd8804 (diff) | |
download | FreeBSD-src-287f219c026740974299722090f229973cd2185f.zip FreeBSD-src-287f219c026740974299722090f229973cd2185f.tar.gz |
Main() returns int.
Diffstat (limited to 'usr.bin/vgrind')
-rw-r--r-- | usr.bin/vgrind/vfontedpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/vgrind/vfontedpr.c b/usr.bin/vgrind/vfontedpr.c index fd812b0..9edb65a 100644 --- a/usr.bin/vgrind/vfontedpr.c +++ b/usr.bin/vgrind/vfontedpr.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)vfontedpr.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: vfontedpr.c,v 1.8 1997/08/25 06:36:03 charnier Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -131,7 +131,7 @@ char *language = "c"; /* the language indicator */ #define ps(x) printf("%s", x) -void +int main(argc, argv) int argc; char *argv[]; |