diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-05-20 05:10:04 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-05-20 05:10:04 +0000 |
commit | 692ad02bcd92f7d9c638a804a5ad01d78e199729 (patch) | |
tree | b84b5c6e30ddca1b679d90f21becc00722497e38 /bin/rmdir | |
parent | 52a2fc64fe0fa4e9772e9c3ea186d16a843ef400 (diff) |
Notes
Diffstat (limited to 'bin/rmdir')
-rw-r--r-- | bin/rmdir/Makefile | 2 | ||||
-rw-r--r-- | bin/rmdir/rmdir.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/bin/rmdir/Makefile b/bin/rmdir/Makefile index c2c7f301ce492..fe1b7d97871fe 100644 --- a/bin/rmdir/Makefile +++ b/bin/rmdir/Makefile @@ -3,4 +3,6 @@ PROG= rmdir +WARNS= 2 + .include <bsd.prog.mk> diff --git a/bin/rmdir/rmdir.c b/bin/rmdir/rmdir.c index 5c16c3d788080..e7c625b792e87 100644 --- a/bin/rmdir/rmdir.c +++ b/bin/rmdir/rmdir.c @@ -52,6 +52,7 @@ static const char rcsid[] = #include <string.h> #include <unistd.h> +int main __P((int, char *[])); int rm_path __P((char *)); void usage __P((void)); |