diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-06-26 23:24:46 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-06-26 23:24:46 +0000 |
commit | eb23aac2d7eb652ee88e15b7d32db9f5f6b307b4 (patch) | |
tree | 03429ad5db3924bb64a9dc031b6ea1931ca9c8e6 /sys/arch/socppc/stand | |
parent | b67846532dd844d067cf0399f4ba4c50503dbc14 (diff) |
Don't #include <sys/user.h> into files that don't need the stuff
it defines. In some cases, this means pulling in uvm.h or pcb.h
instead, but most of the inclusions were just noise. Tested on
alpha, amd64, armish, hppa, i386, macpcc, sgi, sparc64, and vax,
mostly by krw and naddy.
ok krw@
Diffstat (limited to 'sys/arch/socppc/stand')
-rw-r--r-- | sys/arch/socppc/stand/boot/fdt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/socppc/stand/boot/fdt.c b/sys/arch/socppc/stand/boot/fdt.c index 066f33d3d9e..89b5b9f4ec1 100644 --- a/sys/arch/socppc/stand/boot/fdt.c +++ b/sys/arch/socppc/stand/boot/fdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fdt.c,v 1.3 2009/10/01 20:21:05 dms Exp $ */ +/* $OpenBSD: fdt.c,v 1.4 2010/06/26 23:24:44 guenther Exp $ */ /* * Copyright (c) 2009 Dariusz Swiderski <sfires@sfires.net> @@ -19,7 +19,6 @@ #include <sys/types.h> #include <sys/param.h> -//#include <sys/user.h> #include <machine/fdt.h> #include "libsa.h" |