Changed pmap_changebit() into a static function as it always should

have been.

Submitted by:	John Dyson
This commit is contained in:
David Greenman 1995-03-26 23:42:07 +00:00
parent 8b5a6d67db
commit 880d1d842e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7402
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.52 1995/03/10 08:05:00 davidg Exp $
* $Id: pmap.c,v 1.53 1995/03/16 18:11:28 bde Exp $
*/
/*
@ -1856,7 +1856,7 @@ pmap_testbit(pa, bit)
/*
* this routine is used to modify bits in ptes
*/
__inline void
static __inline void
pmap_changebit(pa, bit, setem)
vm_offset_t pa;
int bit;

View File

@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
* $Id: pmap.c,v 1.52 1995/03/10 08:05:00 davidg Exp $
* $Id: pmap.c,v 1.53 1995/03/16 18:11:28 bde Exp $
*/
/*
@ -1856,7 +1856,7 @@ pmap_testbit(pa, bit)
/*
* this routine is used to modify bits in ptes
*/
__inline void
static __inline void
pmap_changebit(pa, bit, setem)
vm_offset_t pa;
int bit;