at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / math / fabs.c
blob8c190c2c69a6f5134278955a25a56454323fd4df
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".
5 * Author: Ceriel J.H. Jacobs
6 */
7 /* $Header$ */
9 double
10 fabs(double x)
12 return x < 0 ? -x : x;