diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-20 06:59:59 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-20 06:59:59 +0000 |
commit | 65029cff7d3d49718f889f8f235f341ec98b8a1c (patch) | |
tree | 3748c6cd4b425c3d516677c1c3c4cfb21bd36fe1 /sys/arch | |
parent | a1c8d94ef80ff7508b919558b8e75cd121d9bbbf (diff) |
Add a prototype for susword().
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/m68k/include/cpu.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/cpu.h b/sys/arch/m68k/include/cpu.h index 5fc92af1db8..8b64024c317 100644 --- a/sys/arch/m68k/include/cpu.h +++ b/sys/arch/m68k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.2 1997/02/10 11:11:48 downsj Exp $ */ +/* $OpenBSD: cpu.h,v 1.3 1997/04/20 06:59:58 downsj Exp $ */ /* $NetBSD: cpu.h,v 1.3 1997/02/02 06:56:57 thorpej Exp $ */ /* @@ -196,6 +196,10 @@ int mappedcopyin __P((void *fromp, void *top, size_t count)); int mappedcopyout __P((void *fromp, void *top, size_t count)); extern u_int mappedcopysize; #endif /* MAPPEDCOPY */ + +/* copy.s */ +int susword __P((caddr_t, u_short)); + #endif /* _KERNEL */ #endif /* _M68K_CPU_H_ */ |