Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / math / fabs.c
1 /*
2  * (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  *
5  * Author: Ceriel J.H. Jacobs
6  */
7 /* $Id: fabs.c,v 1.2 1994/06/24 11:43:30 ceriel Exp $ */
8
9 double
10 fabs(double x)
11 {
12         return  x < 0 ? -x : x;
13 }