diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2016-10-10 18:10:41 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2016-10-10 18:10:41 +0000 |
commit | e30d4ad8c06f11c0b26040212da86fa39f81cea5 (patch) | |
tree | 0bbca4489b1eb97c611ce051d93d5409d10d800a /bin | |
parent | 0fd9d537b9fcb2ad33ef9fc38ef003df83803633 (diff) |
zap extra includes
Diffstat (limited to 'bin')
-rw-r--r-- | bin/mv/rm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/mv/rm.c b/bin/mv/rm.c index 56f4928e6b5..220f02b54fd 100644 --- a/bin/mv/rm.c +++ b/bin/mv/rm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rm.c,v 1.9 2016/10/10 18:09:40 tedu Exp $ */ +/* $OpenBSD: rm.c,v 1.10 2016/10/10 18:10:40 tedu Exp $ */ /* $NetBSD: rm.c,v 1.19 1995/09/07 06:48:50 jtc Exp $ */ /*- @@ -31,8 +31,6 @@ */ #include <sys/types.h> -#include <sys/stat.h> -#include <sys/mount.h> #include <err.h> #include <errno.h> @@ -42,9 +40,6 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <limits.h> -#include <pwd.h> -#include <grp.h> static int eval; |