From b54b43396c9c716c43d58a60efafb21419d2fbb5 Mon Sep 17 00:00:00 2001 From: Iain Sandoe Date: Sun, 28 Apr 2024 17:05:06 +0100 Subject: [PATCH] Darwin: Correct a merge error. For this branch the default_libc_has_function () is not available. Signed-off-by: Iain Sandoe gcc/ChangeLog: * config/darwin.c: Return true as the default libc avaiability. --- gcc/config/darwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 6e887a9ba5ab..a473ea79b1b3 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -3603,7 +3603,7 @@ darwin_libc_has_function (enum function_class fn_class, || (darwin_macosx_version_min && strverscmp (darwin_macosx_version_min, "10.3") >= 0)); #endif - return default_libc_has_function (fn_class, type); + return true; } /* CFStrings implementation. */ -- 2.47.2