Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 05:41:16 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:13 +0300
commiteea249da3bc81776246ad5163f5eb887afdd3659 (patch)
tree610f12206d520381c1ef4370720522f304bed2c8 /newlib/libc/search
parente13e191b6052a62701d8fb22c3660df23d3b6ec1 (diff)
ansification: remove _PARAMS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/search')
-rw-r--r--newlib/libc/search/qsort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/search/qsort.c b/newlib/libc/search/qsort.c
index e24a62a55..6c84b95b7 100644
--- a/newlib/libc/search/qsort.c
+++ b/newlib/libc/search/qsort.c
@@ -77,8 +77,8 @@ typedef int cmp_t(const void *, const void *, void *);
#else
typedef int cmp_t(const void *, const void *);
#endif
-static inline char *med3 _PARAMS((char *, char *, char *, cmp_t *, void *));
-static inline void swapfunc _PARAMS((char *, char *, int, int));
+static inline char *med3 (char *, char *, char *, cmp_t *, void *);
+static inline void swapfunc (char *, char *, int, int);
#define min(a, b) (a) < (b) ? a : b