summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/pcvt
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-09-10 08:32:01 +0000
committerbde <bde@FreeBSD.org>1996-09-10 08:32:01 +0000
commit25556c3b939b3fbbe349eb8dda57f5749ec814a1 (patch)
tree8b4d4d6687e6d3c4d98e0925a737caec878fa862 /sys/i386/isa/pcvt
parente311f5393d87db9cb9afed5cfea2e6c9c8a39676 (diff)
downloadFreeBSD-src-25556c3b939b3fbbe349eb8dda57f5749ec814a1.zip
FreeBSD-src-25556c3b939b3fbbe349eb8dda57f5749ec814a1.tar.gz
Updated #includes to 4.4Lite style.
Diffstat (limited to 'sys/i386/isa/pcvt')
-rw-r--r--sys/i386/isa/pcvt/pcvt_drv.c2
-rw-r--r--sys/i386/isa/pcvt/pcvt_ext.c2
-rw-r--r--sys/i386/isa/pcvt/pcvt_hdr.h4
-rw-r--r--sys/i386/isa/pcvt/pcvt_kbd.c4
-rw-r--r--sys/i386/isa/pcvt/pcvt_out.c2
-rw-r--r--sys/i386/isa/pcvt/pcvt_sup.c2
-rw-r--r--sys/i386/isa/pcvt/pcvt_vtf.c4
7 files changed, 10 insertions, 10 deletions
diff --git a/sys/i386/isa/pcvt/pcvt_drv.c b/sys/i386/isa/pcvt/pcvt_drv.c
index 03ad4fc..10e14b7 100644
--- a/sys/i386/isa/pcvt/pcvt_drv.c
+++ b/sys/i386/isa/pcvt/pcvt_drv.c
@@ -81,7 +81,7 @@
#define EXTERN /* allocate mem */
-#include "pcvt_hdr.h" /* global include */
+#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
#ifdef DEVFS
#include <sys/devfsext.h>
#if !defined(MAXCONS)
diff --git a/sys/i386/isa/pcvt/pcvt_ext.c b/sys/i386/isa/pcvt/pcvt_ext.c
index f0b96c3..e8a75bb 100644
--- a/sys/i386/isa/pcvt/pcvt_ext.c
+++ b/sys/i386/isa/pcvt/pcvt_ext.c
@@ -70,7 +70,7 @@
#include "vt.h"
#if NVT > 0
-#include "pcvt_hdr.h" /* global include */
+#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
static int s3testwritable( void );
static int et4000_col( int );
diff --git a/sys/i386/isa/pcvt/pcvt_hdr.h b/sys/i386/isa/pcvt/pcvt_hdr.h
index 65abdf7..a4353e7 100644
--- a/sys/i386/isa/pcvt/pcvt_hdr.h
+++ b/sys/i386/isa/pcvt/pcvt_hdr.h
@@ -104,7 +104,7 @@
#endif /* PCVT_FREEBSD >= 200 */
-#include "pcvt_conf.h"
+#include <i386/isa/pcvt/pcvt_conf.h>
#if PCVT_NETBSD > 9
#include "device.h"
@@ -158,7 +158,7 @@
#endif
#if PCVT_NETBSD > 9
-#include "i386/isa/pcvt/pcvt_ioctl.h"
+#include <i386/isa/pcvt/pcvt_ioctl.h>
#elif PCVT_FREEBSD >= 200
#include <machine/pcvt_ioctl.h>
#else
diff --git a/sys/i386/isa/pcvt/pcvt_kbd.c b/sys/i386/isa/pcvt/pcvt_kbd.c
index 14f83d7..540544f 100644
--- a/sys/i386/isa/pcvt/pcvt_kbd.c
+++ b/sys/i386/isa/pcvt/pcvt_kbd.c
@@ -71,7 +71,7 @@
#if NVT > 0
-#include "pcvt_hdr.h" /* global include */
+#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
extern int kbd_response __P((void));
@@ -107,7 +107,7 @@ static u_short altkpval = 0;
u_char rawkeybuf[80];
#endif
-#include "pcvt_kbd.h" /* tables etc */
+#include <i386/isa/pcvt/pcvt_kbd.h> /* tables etc */
#if PCVT_SHOWKEYS
/*---------------------------------------------------------------------------*
diff --git a/sys/i386/isa/pcvt/pcvt_out.c b/sys/i386/isa/pcvt/pcvt_out.c
index c3c20ef..d80a8bd 100644
--- a/sys/i386/isa/pcvt/pcvt_out.c
+++ b/sys/i386/isa/pcvt/pcvt_out.c
@@ -64,7 +64,7 @@
#define PCVT_INCLUDE_VT_SELATTR /* get inline function from pcvt_hdr.h */
-#include "pcvt_hdr.h" /* global include */
+#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
diff --git a/sys/i386/isa/pcvt/pcvt_sup.c b/sys/i386/isa/pcvt/pcvt_sup.c
index d3e94be..3686e91 100644
--- a/sys/i386/isa/pcvt/pcvt_sup.c
+++ b/sys/i386/isa/pcvt/pcvt_sup.c
@@ -64,7 +64,7 @@
#include "vt.h"
#if NVT > 0
-#include "pcvt_hdr.h" /* global include */
+#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
static void vid_cursor ( struct cursorshape *data );
static void vgasetfontattr ( struct vgafontattr *data );
diff --git a/sys/i386/isa/pcvt/pcvt_vtf.c b/sys/i386/isa/pcvt/pcvt_vtf.c
index 6dddd5d..1b51eb4 100644
--- a/sys/i386/isa/pcvt/pcvt_vtf.c
+++ b/sys/i386/isa/pcvt/pcvt_vtf.c
@@ -62,8 +62,8 @@
#define PCVT_INCLUDE_VT_SELATTR /* get inline function from pcvt_hdr.h */
-#include "pcvt_hdr.h" /* global include */
-#include "pcvt_tbl.h" /* character set conversion tables */
+#include <i386/isa/pcvt/pcvt_hdr.h> /* global include */
+#include <i386/isa/pcvt/pcvt_tbl.h> /* character set conversion tables */
static void clear_dld ( struct video_state *svsp );
static void init_dld ( struct video_state *svsp );
OpenPOWER on IntegriCloud