Skip to content

Commit

Permalink
add rint and expm1 function to cmath from libm
Browse files Browse the repository at this point in the history
  • Loading branch information
geniusdo authored and xiaoxiang781216 committed Jul 12, 2024
1 parent f12c4e0 commit dde3b1b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/cxx/cmath
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ namespace std
using ::cosf;
using ::coshf;
using ::expf;
using ::expm1f;
using ::fabsf;
using ::floorf;
using ::fmodf;
Expand All @@ -64,6 +65,7 @@ namespace std
using ::log10f;
using ::log2f;
using ::modff;
using ::rintf;
using ::roundf;
using ::powf;
using ::sinf;
Expand Down Expand Up @@ -107,6 +109,7 @@ namespace std
using ::cos;
using ::cosh;
using ::exp;
using ::expm1f;
using ::fabs;
using ::floor;
using ::fmod;
Expand All @@ -117,6 +120,7 @@ namespace std
using ::log10;
using ::log2;
using ::modf;
using ::rint;
using ::round;
using ::pow;
using ::sin;
Expand Down

0 comments on commit dde3b1b

Please sign in to comment.