diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-01-19 03:14:13 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-01-19 03:14:13 +0000 |
commit | b82d72deecd4c4dc62331a5fda15594cfe1fcab0 (patch) | |
tree | 6bf9388c0e5b3fbc71bd5ec66eb79566703e86af | |
parent | 7fd2e121391bce82e0e0e869100941f7edcc85d6 (diff) |
inline -> __inline
-rw-r--r-- | sys/arch/m68k/m68k/process_machdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/m68k/m68k/process_machdep.c b/sys/arch/m68k/m68k/process_machdep.c index 30dffe4a925..7ce95c41b44 100644 --- a/sys/arch/m68k/m68k/process_machdep.c +++ b/sys/arch/m68k/m68k/process_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: process_machdep.c,v 1.2 1996/05/09 22:30:12 niklas Exp $ */ +/* $OpenBSD: process_machdep.c,v 1.3 1997/01/19 03:14:12 briggs Exp $ */ /* $NetBSD: process_machdep.c,v 1.17 1996/05/06 20:05:24 gwr Exp $ */ /* @@ -66,10 +66,10 @@ #ifdef cpu_set_init_frame extern char kstack[]; /* XXX */ #endif -static inline struct frame *process_frame __P((struct proc *p)); -static inline struct fpframe *process_fpframe __P((struct proc *p)); +static __inline struct frame *process_frame __P((struct proc *p)); +static __inline struct fpframe *process_fpframe __P((struct proc *p)); -static inline struct frame * +static __inline struct frame * process_frame(p) struct proc *p; { @@ -83,7 +83,7 @@ process_frame(p) return (ptr); } -static inline struct fpframe * +static __inline struct fpframe * process_fpframe(p) struct proc *p; { |