repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
math
/
fabs.c
blob
8c190c2c69a6f5134278955a25a56454323fd4df
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
/* $Header$ */
8
9
double
10
fabs
(
double
x
)
11
{
12
return
x
<
0
? -
x
:
x
;
13
}