about summary refs log tree commit diff
path: root/stdlib/qsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/qsort.c')
-rw-r--r--stdlib/qsort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/qsort.c b/stdlib/qsort.c
index 72d6b244df..498230b38f 100644
--- a/stdlib/qsort.c
+++ b/stdlib/qsort.c
@@ -83,7 +83,7 @@ _quicksort (pbase, total_elems, size, cmp)
      void *const pbase;
      size_t total_elems;
      size_t size;
-     int (*cmp) __P ((const void *, const void *));
+     __compar_fn_t cmp;
 {
   register char *base_ptr = (char *) pbase;