From 0c44e2ae8b861e06139cfc6377cc59db0f12f781 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 27 Nov 2022 17:24:57 -0700 Subject: [PATCH] * Fixes to the configure script by Florian Meyer (to fix an implicit cast to int in a declaration of a function). --- configure | 2 +- configure.ac | 2 +- pith/pine.hlp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index e6d7a705fb88..5d29dc3ba6c3 100755 --- a/configure +++ b/configure @@ -22039,7 +22039,7 @@ else #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; } diff --git a/configure.ac b/configure.ac index 05b09b2e9537..f96a4c248b39 100644 --- a/configure.ac +++ b/configure.ac @@ -1969,7 +1969,7 @@ ac_cv_func_qsort_argtype, #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; } -- 2.46.1