diff options
author | dwmalone <dwmalone@FreeBSD.org> | 2002-09-04 23:29:10 +0000 |
---|---|---|
committer | dwmalone <dwmalone@FreeBSD.org> | 2002-09-04 23:29:10 +0000 |
commit | b4339b74aded4c38ebcfe3a2a9b37b900abb8874 (patch) | |
tree | fb230419005f211ecea1e667385bde9886dbf0d8 /bin | |
parent | 228b93ce829543fee06561687a63c17a7e821dfd (diff) | |
download | FreeBSD-src-b4339b74aded4c38ebcfe3a2a9b37b900abb8874.zip FreeBSD-src-b4339b74aded4c38ebcfe3a2a9b37b900abb8874.tar.gz |
ANSIify function definitions.
Add some constness to avoid some warnings.
Remove use register keyword.
Deal with missing/unneeded extern/prototypes.
Some minor type changes/casts to avoid warnings.
Reviewed by: md5
Diffstat (limited to 'bin')
-rw-r--r-- | bin/chflags/chflags.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/chflags/chflags.c b/bin/chflags/chflags.c index b2e6c23..9204633 100644 --- a/bin/chflags/chflags.c +++ b/bin/chflags/chflags.c @@ -60,9 +60,7 @@ __FBSDID("$FreeBSD$"); void usage(void); int -main(argc, argv) - int argc; - char *argv[]; +main(int argc, char *argv[]) { FTS *ftsp; FTSENT *p; @@ -177,7 +175,7 @@ main(argc, argv) } void -usage() +usage(void) { (void)fprintf(stderr, "usage: chflags [-R [-H | -L | -P]] flags file ...\n"); |