Bring back the fabsf strong alias to fabs, lost sometime ago during
authormiod <miod@openbsd.org>
Mon, 4 Mar 2024 17:09:23 +0000 (17:09 +0000)
committermiod <miod@openbsd.org>
Mon, 4 Mar 2024 17:09:23 +0000 (17:09 +0000)
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

index 77456a5..d8ba6e0 100644 (file)
@@ -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);