diff options
author | phk <phk@FreeBSD.org> | 2003-04-13 09:02:06 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-04-13 09:02:06 +0000 |
commit | 03b1ca36baf4bd8325f619d97a48764fc6dced85 (patch) | |
tree | 7e373e1543fdcdee14db44b0c4513544d165797c /sys/geom/geom_mirror.c | |
parent | 0f2f76bb732fd63d44ad2f323b86acb6c93a7230 (diff) | |
download | FreeBSD-src-03b1ca36baf4bd8325f619d97a48764fc6dced85.zip FreeBSD-src-03b1ca36baf4bd8325f619d97a48764fc6dced85.tar.gz |
Time has run from the "run GEOM in userland" harness, and the new regression
test is built to test GEOM as running in the kernel.
This commit is basically "unifdef -D_KERNEL" to remove the mainly #include
related code to support the userland-harness.
Diffstat (limited to 'sys/geom/geom_mirror.c')
-rw-r--r-- | sys/geom/geom_mirror.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/geom/geom_mirror.c b/sys/geom/geom_mirror.c index 0e72b1e..7e1b4e7 100644 --- a/sys/geom/geom_mirror.c +++ b/sys/geom/geom_mirror.c @@ -31,13 +31,6 @@ */ #include <sys/param.h> -#ifndef _KERNEL -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <signal.h> -#include <err.h> -#else #include <sys/systm.h> #include <sys/kernel.h> #include <sys/conf.h> @@ -46,7 +39,6 @@ #include <sys/lock.h> #include <sys/mutex.h> #include <sys/libkern.h> -#endif #include <sys/endian.h> #include <sys/md5.h> #include <sys/errno.h> |