<vm/vm.h> -> <uvm/uvm_extern.h>

This commit is contained in:
mrg 2000-06-28 03:32:55 +00:00
parent 05e377a0bd
commit 8890e2439a
2 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ntfs_vfsops.c,v 1.29 2000/06/26 14:21:16 mrg Exp $ */
/* $NetBSD: ntfs_vfsops.c,v 1.30 2000/06/28 03:32:55 mrg Exp $ */
/*-
* Copyright (c) 1998, 1999 Semen Ustimenko
@ -42,7 +42,11 @@
#include <sys/systm.h>
#include <sys/device.h>
#if defined(__NetBSD__)
#include <uvm/uvm_extern.h>
#else
#include <vm/vm.h>
#endif
#include <miscfs/specfs/specdev.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ntfs_vnops.c,v 1.26 2000/06/26 14:21:16 mrg Exp $ */
/* $NetBSD: ntfs_vnops.c,v 1.27 2000/06/28 03:32:55 mrg Exp $ */
/*
* Copyright (c) 1992, 1993
@ -52,7 +52,11 @@
#include <sys/buf.h>
#include <sys/dirent.h>
#if defined(__NetBSD__)
#include <uvm/uvm_extern.h>
#else
#include <vm/vm.h>
#endif
#if defined(__FreeBSD__)
#include <vm/vnode_pager.h>