diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-13 03:50:34 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-13 03:50:34 +0000 |
commit | 07e1c7f69db19a5ad89c222176423820048eccc7 (patch) | |
tree | 07eb9071a15263c4512c588b90a4dc8f336abc9f /sys/kern/subr_rlist.c | |
parent | 0bd3f2acaeda2f9008a0871df619278c12e9e1fc (diff) | |
download | FreeBSD-src-07e1c7f69db19a5ad89c222176423820048eccc7.zip FreeBSD-src-07e1c7f69db19a5ad89c222176423820048eccc7.tar.gz |
Change all #includes to follow the current Berkeley style. Some of these
``changes'' are actually not changes at all, but CVS sometimes has trouble
telling the difference.
This also includes support for second-directory compiles. This is not
quite complete yet, as `config' doesn't yet do the right thing. You can
still make it work trivially, however, by doing the following:
rm /sys/compile
mkdir /usr/obj/sys/compile
ln -s M-. /sys/compile
cd /sys/i386/conf
config MYKERNEL
cd ../../compile/MYKERNEL
ln -s /sys @
rm machine
ln -s @/i386/include machine
make depend
make
Diffstat (limited to 'sys/kern/subr_rlist.c')
-rw-r--r-- | sys/kern/subr_rlist.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/subr_rlist.c b/sys/kern/subr_rlist.c index 4dd156c..0bc1778 100644 --- a/sys/kern/subr_rlist.c +++ b/sys/kern/subr_rlist.c @@ -45,16 +45,16 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: subr_rlist.c,v 1.5 1993/12/22 12:51:39 davidg Exp $ */ -#include "param.h" -#include "systm.h" -#include "cdefs.h" -#include "malloc.h" -#include "rlist.h" -#include "vm/vm.h" -#include "vm/vm_map.h" +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/cdefs.h> +#include <sys/malloc.h> +#include <sys/rlist.h> +#include <vm/vm.h> +#include <vm/vm_map.h> extern vm_map_t kernel_map; |