2015-05-28 Wilco Dijkstra <wdijkstr@arm.com>
[glibc.git] / sysdeps / ieee754 / flt-32 / s_fabsf.c
blob297abe64bd663e8dde1194b24126ea3941c1da3e
1 /* s_fabsf.c -- float version of s_fabs.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
5 /*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
16 #if defined(LIBM_SCCS) && !defined(lint)
17 static char rcsid[] = "$NetBSD: s_fabsf.c,v 1.4 1995/05/10 20:47:15 jtc Exp $";
18 #endif
21 * fabsf(x) returns the absolute value of x.
24 #include <math.h>
26 float __fabsf(float x)
28 return __builtin_fabsf (x);
30 weak_alias (__fabsf, fabsf)