diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-06-12 21:41:30 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-06-12 21:41:30 -0700 |
commit | e9d279b362b2beb4a93a4713fd64537ffc057d96 (patch) | |
tree | da4cf744b16470fae2b30391aab700a13a48aa00 | |
parent | 877c9486af47c8d9048b584666290c4f2de501fc (diff) |
ceilf and floorf
-rw-r--r-- | src/library.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index b0f7ef86..340fc72a 100644 --- a/src/library.js +++ b/src/library.js @@ -1055,7 +1055,9 @@ var Library = { fabs: 'Math.abs', fabsf: 'Math.abs', ceil: 'Math.ceil', + ceilf: 'Math.ceil', floor: 'Math.floor', + floorf: 'Math.floor', llvm_sqrt_f32: 'Math.sqrt', llvm_sqrt_f64: 'Math.sqrt', llvm_pow_f32: 'Math.pow', |