inline -> __inline
authorbriggs <briggs@openbsd.org>
Sun, 19 Jan 1997 03:14:12 +0000 (03:14 +0000)
committerbriggs <briggs@openbsd.org>
Sun, 19 Jan 1997 03:14:12 +0000 (03:14 +0000)
sys/arch/m68k/m68k/process_machdep.c
sys/arch/mac68k/dev/ite.c

index 30dffe4..7ce95c4 100644 (file)
@@ -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 $ */
 
 /*
 #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;
 {
index 59ca731..a1c5bf3 100644 (file)
@@ -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;