aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-09-29 15:00:37 +0000
committerBruce Evans <bde@FreeBSD.org>1996-09-29 15:00:37 +0000
commitdc927d0c6b1a019cbe3599965dd74c9afb19c674 (patch)
tree0098dea6aea74961622203fb752df4327f5c7ac8 /sys
parent985c294e79e4b87f54754f6d9df1cc4d45430a15 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/miscfs/devfs/devfs_tree.c4
-rw-r--r--sys/sys/systm.h8
2 files changed, 7 insertions, 5 deletions
diff --git a/sys/miscfs/devfs/devfs_tree.c b/sys/miscfs/devfs/devfs_tree.c
index c9aa5d7215dff..f4110f919418d 100644
--- a/sys/miscfs/devfs/devfs_tree.c
+++ b/sys/miscfs/devfs/devfs_tree.c
@@ -2,7 +2,7 @@
/*
* Written by Julian Elischer (julian@DIALix.oz.au)
*
- * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_tree.c,v 1.29 1996/08/13 19:48:40 julian Exp $
+ * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_tree.c,v 1.30 1996/09/10 08:27:33 bde Exp $
*/
#include <sys/param.h>
@@ -18,6 +18,8 @@
#include <sys/dir.h> /* defines dirent structure */
#include <sys/devfsext.h>
+#include <machine/stdarg.h>
+
#include <miscfs/devfs/devfsdefs.h>
SYSINIT(devfs, SI_SUB_DEVFS, SI_ORDER_FIRST, devfs_sinit, NULL)
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index e62840095b0ce..eff79f9990253 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -36,14 +36,13 @@
* SUCH DAMAGE.
*
* @(#)systm.h 8.7 (Berkeley) 3/29/95
- * $Id: systm.h,v 1.43 1996/08/31 16:57:54 bde Exp $
+ * $Id: systm.h,v 1.44 1996/09/13 09:20:15 bde Exp $
*/
#ifndef _SYS_SYSTM_H_
#define _SYS_SYSTM_H_
#include <machine/cpufunc.h>
-#include <machine/stdarg.h>
/*
* The `securelevel' variable controls the security level of the system.
@@ -120,12 +119,13 @@ void boot __P((int)) __dead2;
void cpu_boot __P((int));
void tablefull __P((const char *));
int addlog __P((const char *, ...));
-int kvprintf __P((char const *, void (*)(int, void*), void *, int, va_list));
+int kvprintf __P((char const *, void (*)(int, void*), void *, int,
+ _BSD_VA_LIST_));
void log __P((int, const char *, ...));
int printf __P((const char *, ...));
int sprintf __P((char *buf, const char *, ...));
void uprintf __P((const char *, ...));
-void vprintf __P((const char *, va_list));
+void vprintf __P((const char *, _BSD_VA_LIST_));
void ttyprintf __P((struct tty *, const char *, ...));
void bcopy __P((const void *from, void *to, size_t len));