sparc64: Remove unwind information from signal return stubs [BZ#31244]
[glibc.git] / sysdeps / ieee754 / flt-32 / s_fabsf.c
blobc08a64db39a0902134617ff23a40d4330ce0f80b
1 /* s_fabsf.c -- float version of s_fabs.c.
2 */
4 /*
5 * ====================================================
6 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 * Developed at SunPro, a Sun Microsystems, Inc. business.
9 * Permission to use, copy, modify, and distribute this
10 * software is freely granted, provided that this notice
11 * is preserved.
12 * ====================================================
15 #if defined(LIBM_SCCS) && !defined(lint)
16 static char rcsid[] = "$NetBSD: s_fabsf.c,v 1.4 1995/05/10 20:47:15 jtc Exp $";
17 #endif
20 * fabsf(x) returns the absolute value of x.
23 #include <math.h>
24 #include <libm-alias-float.h>
26 float __fabsf(float x)
28 return __builtin_fabsf (x);
30 libm_alias_float (__fabs, fabs)