Files
Arquivotheca.SunOS-4.1.4/lib/libc/gen/common/fabs.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

21 lines
289 B
C

#ifndef lint
static char sccsid[] = "@(#)fabs.c 1.1 94/10/31 SMI";
#endif
/*
* Copyright (c) 1988 by Sun Microsystems, Inc.
*/
double
fabs(x)
double x;
{
long *px = (long *) &x;
#ifdef i386
px[1] &= 0x7fffffff;
#else
px[0] &= 0x7fffffff;
#endif
return x;
}