summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/stand/libsa/dev_i386.c4
-rw-r--r--sys/arch/i386/stand/libsa/gateA20.c4
-rw-r--r--sys/arch/i386/stand/libsa/time.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/i386/stand/libsa/dev_i386.c b/sys/arch/i386/stand/libsa/dev_i386.c
index 6f2fb598902..596c05455c2 100644
--- a/sys/arch/i386/stand/libsa/dev_i386.c
+++ b/sys/arch/i386/stand/libsa/dev_i386.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dev_i386.c,v 1.12 1997/06/06 16:26:57 kstailey Exp $ */
+/* $OpenBSD: dev_i386.c,v 1.13 1997/07/17 23:00:27 mickey Exp $ */
/*
* Copyright (c) 1996 Michael Shalayeff
@@ -32,7 +32,7 @@
*
*/
-#include <libsa.h>
+#include "libsa.h"
#include "biosdev.h"
extern int debug;
diff --git a/sys/arch/i386/stand/libsa/gateA20.c b/sys/arch/i386/stand/libsa/gateA20.c
index 046c451c3ca..8e81e1e834b 100644
--- a/sys/arch/i386/stand/libsa/gateA20.c
+++ b/sys/arch/i386/stand/libsa/gateA20.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gateA20.c,v 1.3 1997/04/21 19:55:39 mickey Exp $ */
+/* $OpenBSD: gateA20.c,v 1.4 1997/07/17 23:00:26 mickey Exp $ */
/*
* Ported to boot 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
@@ -30,7 +30,7 @@
#include <sys/types.h>
#include <machine/pio.h>
-#include <stand.h>
+#include <lib/libsa/stand.h>
#include <dev/ic/i8042reg.h>
#define KC_CMD_WOUT 0xd1 /* write output port */
diff --git a/sys/arch/i386/stand/libsa/time.c b/sys/arch/i386/stand/libsa/time.c
index cae2dd12f68..0b3e9d44710 100644
--- a/sys/arch/i386/stand/libsa/time.c
+++ b/sys/arch/i386/stand/libsa/time.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: time.c,v 1.4 1997/07/08 03:41:00 mickey Exp $ */
+/* $OpenBSD: time.c,v 1.5 1997/07/17 23:00:27 mickey Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -32,8 +32,8 @@
*
*/
-#include <libsa.h>
#include <sys/time.h>
+#include "libsa.h"
#include "biosdev.h"
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)