blob: 12165a558393be7e6968b79319a0f263cb993c0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $OpenBSD: pmap.h,v 1.36 2004/07/25 11:06:42 miod Exp $ */
/* public domain */
#ifndef _MVME88K_PMAP_H_
#define _MVME88K_PMAP_H_
#include <m88k/pmap.h>
#ifdef _KERNEL
vaddr_t pmap_bootstrap_md(vaddr_t);
#endif
#endif _MVME88K_PMAP_H_
|