diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-24 04:43:05 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-24 04:43:05 +0000 |
commit | cb603e18457a12ca07722720369c40943b5dda77 (patch) | |
tree | 8e601c51c307e587b1430fcaf226f06916912d0f | |
parent | f4ff2d57dafa8f65f46ceb1d6c8d6b68f41cc9ec (diff) |
More inline function cleanup for stricter -W flags.
-rw-r--r-- | sys/arch/powerpc/include/cpu.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/arch/powerpc/include/cpu.h b/sys/arch/powerpc/include/cpu.h index b854c1732ce..f532255b01f 100644 --- a/sys/arch/powerpc/include/cpu.h +++ b/sys/arch/powerpc/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.5 2001/01/24 21:29:12 drahn Exp $ */ +/* $OpenBSD: cpu.h,v 1.6 2001/06/24 04:43:04 drahn Exp $ */ /* $NetBSD: cpu.h,v 1.1 1996/09/30 16:34:21 ws Exp $ */ /* @@ -58,10 +58,8 @@ extern volatile int astpending; #define CACHELINESIZE 32 /* For now XXX */ -extern __inline void -syncicache(from, len) - void *from; - int len; +static __inline void +syncicache(void *from, int len) { int l = len; char *p = from; |