diff options
author | bde <bde@FreeBSD.org> | 1996-09-29 15:00:37 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-29 15:00:37 +0000 |
commit | 796679c034abb20cc5f23c947bd0e0d0bd494b65 (patch) | |
tree | 0098dea6aea74961622203fb752df4327f5c7ac8 /sys/miscfs/devfs/devfs_tree.c | |
parent | 2766d201c3994313a8cece13dd62f3eba1740c7e (diff) | |
download | FreeBSD-src-796679c034abb20cc5f23c947bd0e0d0bd494b65.zip FreeBSD-src-796679c034abb20cc5f23c947bd0e0d0bd494b65.tar.gz |
Started unspamming <sys/systm.h>. Don't include <machine/stdarg.h>
to get the declaration of va_list; just use _BSD_VA_LIST. Fixed
the 2 places that need <machine.stdarg.h> but didn't include it
explicitly.
Diffstat (limited to 'sys/miscfs/devfs/devfs_tree.c')
-rw-r--r-- | sys/miscfs/devfs/devfs_tree.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/miscfs/devfs/devfs_tree.c b/sys/miscfs/devfs/devfs_tree.c index c9aa5d7..f4110f9 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) |