From 4e9f083bcbb71d874ac11f66acd7085cf298f429 Mon Sep 17 00:00:00 2001 From: miod Date: Mon, 4 Mar 2024 17:09:23 +0000 Subject: [PATCH] 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@ --- lib/libm/arch/sh/s_fabsf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.20.1