diff options
author | joerg <joerg@FreeBSD.org> | 1994-10-14 16:03:33 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1994-10-14 16:03:33 +0000 |
commit | 0cc1383e69eeaf09e9561ec86b72ce41163a2faa (patch) | |
tree | c5b22e31995d32102562ecc66e3b7ad772380292 /usr.sbin/fdwrite | |
parent | 28cf896d6865e1817a92001b07739c3b124ba816 (diff) | |
download | FreeBSD-src-0cc1383e69eeaf09e9561ec86b72ce41163a2faa.zip FreeBSD-src-0cc1383e69eeaf09e9561ec86b72ce41163a2faa.tar.gz |
#include'ing mysterious stuff from ${DESTDIR}/sys/<somewhere> is no longer
necessary.
Requested by: phk
Diffstat (limited to 'usr.sbin/fdwrite')
-rw-r--r-- | usr.sbin/fdwrite/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/fdwrite/fdwrite.c | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/usr.sbin/fdwrite/Makefile b/usr.sbin/fdwrite/Makefile index 23c22d8..a860090 100644 --- a/usr.sbin/fdwrite/Makefile +++ b/usr.sbin/fdwrite/Makefile @@ -6,11 +6,11 @@ # this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp # ---------------------------------------------------------------------------- # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1994/09/18 07:39:19 phk Exp $ # # PROG = fdwrite -CFLAGS+= -Wall -I${DESTDIR}/sys +CFLAGS+= -Wall .include <bsd.prog.mk> diff --git a/usr.sbin/fdwrite/fdwrite.c b/usr.sbin/fdwrite/fdwrite.c index 8e3e914..830faf5 100644 --- a/usr.sbin/fdwrite/fdwrite.c +++ b/usr.sbin/fdwrite/fdwrite.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id$ + * $Id: fdwrite.c,v 1.1.1.1 1994/09/18 07:39:19 phk Exp $ * */ @@ -19,7 +19,6 @@ #include <errno.h> #include <machine/ioctl_fd.h> -#include <i386/isa/fdreg.h> /* XXX should be in <machine> dir */ int format_track(int fd, int cyl, int secs, int head, int rate, |