diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-11 17:50:34 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-11 17:50:34 +0000 |
commit | 1f5035097e2fd203119fe2cbf53d3555fd75520d (patch) | |
tree | 49895ba8f980dc3eb8458fff5e66198b5569d745 /sys/arch/sun3 | |
parent | 645b4021af446192e9eda96e3f53d42ef57de709 (diff) |
prototypes for copypage & zeropage
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r-- | sys/arch/sun3/sun3/pmap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/sun3/sun3/pmap.c b/sys/arch/sun3/sun3/pmap.c index 030c1fe34fe..63136b7fe04 100644 --- a/sys/arch/sun3/sun3/pmap.c +++ b/sys/arch/sun3/sun3/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.8 1997/02/10 12:24:40 downsj Exp $ */ +/* $OpenBSD: pmap.c,v 1.9 1997/02/11 17:50:33 kstailey Exp $ */ /* $NetBSD: pmap.c,v 1.64 1996/11/20 18:57:35 gwr Exp $ */ /*- @@ -3130,6 +3130,9 @@ pmap_update() { } +extern copypage __P((caddr_t, caddr_t)); +extern zeropage __P((char *)); + /* * pmap_copy_page copies the specified (machine independent) * page by mapping the page into virtual memory and using |