diff options
author | peter <peter@FreeBSD.org> | 2000-01-24 08:15:42 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-01-24 08:15:42 +0000 |
commit | 47a5efe34683d09d62f5292a35e5aea4f19d8b8b (patch) | |
tree | 0c2e0febb5e660460707d64128249e32aa1e70aa | |
parent | d10f128836cb042d2c45ddc8b654a934770f6a75 (diff) | |
download | FreeBSD-src-47a5efe34683d09d62f5292a35e5aea4f19d8b8b.zip FreeBSD-src-47a5efe34683d09d62f5292a35e5aea4f19d8b8b.tar.gz |
Use si.h in new location.
-rw-r--r-- | usr.sbin/sicontrol/Makefile | 3 | ||||
-rw-r--r-- | usr.sbin/sicontrol/sicontrol.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/sicontrol/Makefile b/usr.sbin/sicontrol/Makefile index 48dab58..9ca26f4 100644 --- a/usr.sbin/sicontrol/Makefile +++ b/usr.sbin/sicontrol/Makefile @@ -1,5 +1,8 @@ +# $FreeBSD$ + PROG= sicontrol SRCS= sicontrol.c MAN8= sicontrol.8 +CFLAGS+= -I${.CURDIR}/../../sys .include <bsd.prog.mk> diff --git a/usr.sbin/sicontrol/sicontrol.c b/usr.sbin/sicontrol/sicontrol.c index a234e6b..014628a 100644 --- a/usr.sbin/sicontrol/sicontrol.c +++ b/usr.sbin/sicontrol/sicontrol.c @@ -48,7 +48,7 @@ static const char rcsid[] = #include <sys/ioctl.h> #include <sys/tty.h> -#include <machine/si.h> +#include <dev/si/si.h> struct lv { char *lv_name; |