diff options
author | imp <imp@FreeBSD.org> | 2002-02-02 06:48:10 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-02-02 06:48:10 +0000 |
commit | 50014e35418ca00d25ea852fc4f94acf80be4df3 (patch) | |
tree | f26db6e85c29b2244f601bdb366caa7f26a96c24 /bin/rmdir | |
parent | 3fc8df52e3856eeac730574d5ae122806dd1e1ef (diff) | |
download | FreeBSD-src-50014e35418ca00d25ea852fc4f94acf80be4df3.zip FreeBSD-src-50014e35418ca00d25ea852fc4f94acf80be4df3.tar.gz |
o __P has been reoved
o Old-style K&R declarations have been converted to new C89 style
o register has been removed
o prototype for main() has been removed (gcc3 makes it an error)
o int main(int argc, char *argv[]) is the preferred main definition.
o Attempt to not break style(9) conformance for declarations more than
they already are.
Diffstat (limited to 'bin/rmdir')
-rw-r--r-- | bin/rmdir/rmdir.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/bin/rmdir/rmdir.c b/bin/rmdir/rmdir.c index e7c625b..3ab22dd 100644 --- a/bin/rmdir/rmdir.c +++ b/bin/rmdir/rmdir.c @@ -52,14 +52,11 @@ static const char rcsid[] = #include <string.h> #include <unistd.h> -int main __P((int, char *[])); -int rm_path __P((char *)); -void usage __P((void)); +int rm_path(char *); +void usage(void); int -main(argc, argv) - int argc; - char *argv[]; +main(int argc, char *argv[]) { int ch, errors; int pflag; @@ -92,8 +89,7 @@ main(argc, argv) } int -rm_path(path) - char *path; +rm_path(char *path) { char *p; @@ -117,7 +113,7 @@ rm_path(path) } void -usage() +usage(void) { (void)fprintf(stderr, "usage: rmdir [-p] directory ...\n"); |