diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-05-12 23:25:09 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-05-12 23:25:09 +0000 |
commit | 85cd3778c5fcb7b922f3dd1c0deb887fcfc4e3b1 (patch) | |
tree | 5a1a783393b5e9dbc505168c59ac365afe081dc0 /sbin/mount | |
parent | dfd22c13631653548cdd19a2a4d9a2077c336fe7 (diff) |
don't define _KERNEL. Theres no need and its gross.
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 6f2ab5e6507..30eecb461d5 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.48 2007/11/17 17:18:32 krw Exp $ */ +/* $OpenBSD: mount.c,v 1.49 2009/05/12 23:25:08 thib Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.48 2007/11/17 17:18:32 krw Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.49 2009/05/12 23:25:08 thib Exp $"; #endif #endif /* not lint */ @@ -51,9 +51,7 @@ static char rcsid[] = "$OpenBSD: mount.c,v 1.48 2007/11/17 17:18:32 krw Exp $"; #include <nfs/rpcv2.h> #include <nfs/nfsproto.h> -#define _KERNEL #include <nfs/nfs.h> -#undef _KERNEL #include <err.h> #include <errno.h> |