no need to duplicate the generic fabs_ieee754.c here

This commit is contained in:
macallan 2014-01-28 14:10:39 +00:00
parent dd477c0e3e
commit b2f3ff1f14
1 changed files with 0 additions and 11 deletions

View File

@ -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);
}