diff options
author | aiju <devnull@localhost> | 2018-05-24 13:40:44 +0100 |
---|---|---|
committer | aiju <devnull@localhost> | 2018-05-24 13:40:44 +0100 |
commit | be3809866ce89d2dcac0b02f2ec7b49b5393cb56 (patch) | |
tree | 1c1b211ddbd23367e2c3c692804f814fbe3fba8a /amd64 | |
parent | 930efe67e81635e632f1e6f93e1c56499c79a55f (diff) | |
download | plan9front-be3809866ce89d2dcac0b02f2ec7b49b5393cb56.tar.xz |
ape: floating point improvements (thanks spew)
Diffstat (limited to 'amd64')
-rw-r--r-- | amd64/include/ape/math.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/amd64/include/ape/math.h b/amd64/include/ape/math.h index a880a01f8..3bd3daade 100644 --- a/amd64/include/ape/math.h +++ b/amd64/include/ape/math.h @@ -37,6 +37,7 @@ extern double NaN(void); extern int isNaN(double); extern double Inf(int); extern int isInf(double, int); +extern double fmin(double, double); #ifdef _RESEARCH_SOURCE /* does >> treat left operand as unsigned ? */ |