1996-03-05 21:41:30 +00:00
|
|
|
/* s_fabsf.c -- float version of s_fabs.c.
|
|
|
|
* Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
2013-06-05 20:44:03 +00:00
|
|
|
* software is freely granted, provided that this notice
|
1996-03-05 21:41:30 +00:00
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
|
|
|
static char rcsid[] = "$NetBSD: s_fabsf.c,v 1.4 1995/05/10 20:47:15 jtc Exp $";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fabsf(x) returns the absolute value of x.
|
|
|
|
*/
|
|
|
|
|
2012-03-09 11:29:16 -08:00
|
|
|
#include <math.h>
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2012-01-27 17:27:55 +00:00
|
|
|
float __fabsf(float x)
|
1996-03-05 21:41:30 +00:00
|
|
|
{
|
2015-05-28 11:42:55 +01:00
|
|
|
return __builtin_fabsf (x);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
|
|
|
weak_alias (__fabsf, fabsf)
|