Description: Fixes to the configure script
Author: Eduardo Chappa <chappa@washington.edu>
Origin: upstream, https://repo.or.cz/alpine.git/patch/0c44e2ae8b861e06139cfc6377cc59db0f12f781
Bug-Debian: https://bugs.debian.org/1114043
Last-Update: 2022-11-27

Fixes to the configure script by Florian Meyer (to fix an implicit
cast to int in a declaration of a function).

--- a/configure
+++ b/configure
@@ -22034,7 +22034,7 @@
 #endif
 
 extern void *base;
-extern sortf(const void *, const void *);
+extern int sortf(const void *, const void *);
 int sortf(a, b)
   const void *a;
   const void *b; { return 0; }
--- a/configure.ac
+++ b/configure.ac
@@ -1964,7 +1964,7 @@
 #endif
 
 extern void *base;
-extern sortf(const void *, const void *);
+extern int sortf(const void *, const void *);
 int sortf(a, b)
   const void *a;
   const void *b; { return 0; }
