From 60fdcd77ab879ee06640599bcf2fbbea95088eac Mon Sep 17 00:00:00 2001 From: tholo <> Date: Mon, 25 Mar 1996 22:16:40 +0000 Subject: Add prototypes for internal functions Change inline to __inline --- src/lib/libc/stdlib/radixsort.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libc/stdlib/radixsort.c') diff --git a/src/lib/libc/stdlib/radixsort.c b/src/lib/libc/stdlib/radixsort.c index dd51013c94..d571c8f3d2 100644 --- a/src/lib/libc/stdlib/radixsort.c +++ b/src/lib/libc/stdlib/radixsort.c @@ -36,7 +36,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char sccsid[] = "from: @(#)radixsort.c 8.1 (Berkeley) 6/4/93";*/ -static char *rcsid = "$Id: radixsort.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; +static char *rcsid = "$Id: radixsort.c,v 1.2 1996/03/25 22:16:39 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -61,7 +61,7 @@ typedef struct { int sn, si; } stack; -static inline void simplesort +static __inline void simplesort __P((const u_char **, int, int, const u_char *, u_int)); static void r_sort_a __P((const u_char **, int, int, const u_char *, u_int)); static void r_sort_b __P((const u_char **, @@ -295,7 +295,7 @@ r_sort_b(a, ta, n, i, tr, endch) } } -static inline void +static __inline void simplesort(a, n, b, tr, endch) /* insertion sort */ register const u_char **a; int n, b; -- cgit v1.2.3-55-g6feb