summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-16 13:50:03 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-16 13:50:03 +0000
commitdbfd959ec35607d3c1a038c6c87c819526e5741f (patch)
treec79c039132e7421e2f7b31088397a6d617d2003f /sys
parentba9b3006fcd3c29e13dc7d590a17828f07207169 (diff)
update according to the libsa changes
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/mvme68k/stand/sboot/clock.c3
-rw-r--r--sys/arch/mvme68k/stand/sboot/etherfun.c3
-rw-r--r--sys/arch/mvme68k/stand/sboot/if_le.c3
-rw-r--r--sys/arch/mvme68k/stand/sboot/sboot.c3
-rw-r--r--sys/arch/mvme68k/stand/sboot/sboot.h15
5 files changed, 9 insertions, 18 deletions
diff --git a/sys/arch/mvme68k/stand/sboot/clock.c b/sys/arch/mvme68k/stand/sboot/clock.c
index 9f2300d53b2..3da630d92b1 100644
--- a/sys/arch/mvme68k/stand/sboot/clock.c
+++ b/sys/arch/mvme68k/stand/sboot/clock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clock.c,v 1.3 1996/04/28 10:49:34 deraadt Exp $ */
+/* $OpenBSD: clock.c,v 1.4 1996/10/16 13:49:59 mickey Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -51,6 +51,7 @@
*/
#include <sys/cdefs.h>
+#include <sys/types.h>
#include "sboot.h"
#include "clockreg.h"
diff --git a/sys/arch/mvme68k/stand/sboot/etherfun.c b/sys/arch/mvme68k/stand/sboot/etherfun.c
index 37b920a79b8..7128320f141 100644
--- a/sys/arch/mvme68k/stand/sboot/etherfun.c
+++ b/sys/arch/mvme68k/stand/sboot/etherfun.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: etherfun.c,v 1.2 1996/04/28 10:49:36 deraadt Exp $ */
+/* $OpenBSD: etherfun.c,v 1.3 1996/10/16 13:50:00 mickey Exp $ */
/*
*
@@ -34,6 +34,7 @@
/* etherfun.c */
#include <sys/cdefs.h>
+#include <stand.h>
#include "sboot.h"
#include "etherfun.h"
diff --git a/sys/arch/mvme68k/stand/sboot/if_le.c b/sys/arch/mvme68k/stand/sboot/if_le.c
index c20992ab39c..2adc5626747 100644
--- a/sys/arch/mvme68k/stand/sboot/if_le.c
+++ b/sys/arch/mvme68k/stand/sboot/if_le.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_le.c,v 1.3 1996/04/28 10:49:38 deraadt Exp $ */
+/* $OpenBSD: if_le.c,v 1.4 1996/10/16 13:50:01 mickey Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -61,6 +61,7 @@
*/
#include <sys/cdefs.h>
+#include <stand.h>
#include "sboot.h"
#include "if_lereg.h"
diff --git a/sys/arch/mvme68k/stand/sboot/sboot.c b/sys/arch/mvme68k/stand/sboot/sboot.c
index dce215f91ff..731d124353f 100644
--- a/sys/arch/mvme68k/stand/sboot/sboot.c
+++ b/sys/arch/mvme68k/stand/sboot/sboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sboot.c,v 1.6 1996/08/20 04:01:09 deraadt Exp $ */
+/* $OpenBSD: sboot.c,v 1.7 1996/10/16 13:50:01 mickey Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -61,6 +61,7 @@
*/
#include <sys/cdefs.h>
+#include <sys/types.h>
#include "sboot.h"
void
diff --git a/sys/arch/mvme68k/stand/sboot/sboot.h b/sys/arch/mvme68k/stand/sboot/sboot.h
index 377329e1e35..ada208b9a16 100644
--- a/sys/arch/mvme68k/stand/sboot/sboot.h
+++ b/sys/arch/mvme68k/stand/sboot/sboot.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sboot.h,v 1.3 1996/05/29 15:30:44 chuck Exp $ */
+/* $OpenBSD: sboot.h,v 1.4 1996/10/16 13:50:02 mickey Exp $ */
/*
* Copyright (c) 1995 Charles D. Cranor and Seth Widoff
@@ -35,23 +35,10 @@
* sboot.h: stuff for MVME147's serial line boot
*/
-typedef unsigned short u_short;
-typedef unsigned long u_long;
-typedef unsigned char u_char;
-typedef unsigned int u_int;
-typedef u_long size_t;
-typedef char *caddr_t;
extern caddr_t end;
-#define NULL ((char *)0)
-
-void bcopy __P((const void *, void *, size_t)); /* libc_sa */
-void *memset __P((void *, int, size_t)); /* libc_sa */
-int printf __P((const char *, ...)); /* libc_sa */
-
/* console */
void puts __P((char *));
-void putchar __P((char));
char cngetc __P((void));
char *ngets __P((char *, int));