diff options
author | dim <dim@FreeBSD.org> | 2015-09-20 20:34:17 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-09-20 20:34:17 +0000 |
commit | 18b14b4a2fd66af5fcf07d469fe45b32b2c0be76 (patch) | |
tree | 6068d0c9297482b6c68c78d37d113e16d44371c0 /lib/libc/stdlib/qsort.c | |
parent | 7b8be099124cf3848a48077ce37206e0ae691839 (diff) | |
parent | e5a64a53e6f41e1fb2f62f6b0fdfdbe1b7d5f5b0 (diff) | |
download | FreeBSD-src-18b14b4a2fd66af5fcf07d469fe45b32b2c0be76.zip FreeBSD-src-18b14b4a2fd66af5fcf07d469fe45b32b2c0be76.tar.gz |
Merge ^/head r287878 through r288034.
Diffstat (limited to 'lib/libc/stdlib/qsort.c')
-rw-r--r-- | lib/libc/stdlib/qsort.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c index e97ea92..0881688 100644 --- a/lib/libc/stdlib/qsort.c +++ b/lib/libc/stdlib/qsort.c @@ -64,9 +64,7 @@ static inline void swapfunc(char *, char *, int, int, int); es % sizeof(TYPE) ? 2 : es == sizeof(TYPE) ? 0 : 1; static inline void -swapfunc(a, b, n, swaptype_long, swaptype_int) - char *a, *b; - int n, swaptype_long, swaptype_int; +swapfunc( char *a, char *b, int n, int swaptype_long, int swaptype_int) { if (swaptype_long <= 1) swapcode(long, a, b, n) |