blob: 6d0f75cf370dabd227bd1f90fefe4edbf30b3fa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $OpenBSD: pmap.h,v 1.19 2005/04/27 00:12:43 miod Exp $ */
#ifndef _MAC68K_PMAP_H_
#define _MAC68K_PMAP_H_
#include <m68k/pmap_motorola.h>
#ifdef _KERNEL
void pmap_init_md(void);
#define PMAP_INIT_MD() pmap_init_md()
#endif /* _KERNEL */
#endif /* _MAC68K_PMAP_H_ */
|