From: miod Date: Mon, 4 Mar 2024 17:09:23 +0000 (+0000) Subject: Bring back the fabsf strong alias to fabs, lost sometime ago during X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4e9f083bcbb71d874ac11f66acd7085cf298f429;p=openbsd Bring back the fabsf strong alias to fabs, lost sometime ago during libm symbol visibility rework. This would warrant a libm.so minor bump, but as 7.5 packages build have started, this won't happen (and hopefully noone will notice since this only affects landisk). ok deraadt@ --- diff --git a/lib/libm/arch/sh/s_fabsf.c b/lib/libm/arch/sh/s_fabsf.c index 77456a54ad2..d8ba6e088fe 100644 --- a/lib/libm/arch/sh/s_fabsf.c +++ b/lib/libm/arch/sh/s_fabsf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s_fabsf.c,v 1.2 2014/04/18 15:09:52 guenther Exp $ */ +/* $OpenBSD: s_fabsf.c,v 1.3 2024/03/04 17:09:23 miod Exp $ */ /* * Written by Martynas Venckus. Public domain @@ -14,4 +14,4 @@ fabsf(float f) return (f); } - +DEF_STD(fabsf);