From 4c3ada08aa9a154f4fef9aadd20f4a37aabf379c Mon Sep 17 00:00:00 2001 From: briggs Date: Sun, 19 Jan 1997 03:14:12 +0000 Subject: [PATCH] inline -> __inline --- sys/arch/m68k/m68k/process_machdep.c | 10 +++++----- sys/arch/mac68k/dev/ite.c | 6 +++--- 2 files changed, 8 insertions(+), 8 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; { diff --git a/sys/arch/mac68k/dev/ite.c b/sys/arch/mac68k/dev/ite.c index 59ca731b6a5..a1c5bf343c5 100644 --- a/sys/arch/mac68k/dev/ite.c +++ b/sys/arch/mac68k/dev/ite.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ite.c,v 1.7 1996/11/10 14:29:41 briggs Exp $ */ +/* $OpenBSD: ite.c,v 1.8 1997/01/19 03:18:02 briggs Exp $ */ /* $NetBSD: ite.c,v 1.27 1996/11/10 09:35:04 scottr Exp $ */ /* @@ -91,7 +91,7 @@ #define CHARHEIGHT 10 /* Local function prototypes */ -static inline void putpixel1 __P((int, int, int *, int)); +static __inline void putpixel1 __P((int, int, int *, int)); static void putpixel2 __P((int, int, int *, int)); static void putpixel4 __P((int, int, int *, int)); static void putpixel8 __P((int, int, int *, int)); @@ -174,7 +174,7 @@ static void (*reversepixel) __P((int x, int y, int num)); * Bitmap handling functions */ -static inline void +static __inline void putpixel1(xx, yy, c, num) int xx, yy; int *c; -- 2.20.1