no need to duplicate the generic fabs_ieee754.c here
This commit is contained in:
parent
dd477c0e3e
commit
b2f3ff1f14
|
@ -1,11 +0,0 @@
|
|||
/* $NetBSD: fabs_ieee754.c,v 1.1 2014/01/28 13:47:04 macallan Exp $ */
|
||||
|
||||
#include <math.h>
|
||||
|
||||
double
|
||||
fabs(double x)
|
||||
{
|
||||
if (x < 0)
|
||||
x = -x;
|
||||
return (x);
|
||||
}
|
Loading…
Reference in New Issue