ack/lang/cem/libcc.ansi/core/math/fabs.c

20 lines
316 B
C
Raw Normal View History

1989-05-10 16:08:14 +00:00
/*
* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
#include <ack/config.h>
#if ACKCONF_WANT_FLOAT
1989-05-10 16:08:14 +00:00
double
fabs(double x)
{
2018-06-21 20:33:47 +00:00
return x < 0 ? -x : x;
1989-05-10 16:08:14 +00:00
}
#endif