-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Stonedestroyer <[email protected]>
- Loading branch information
1 parent
56b0325
commit 976a2cf
Showing
3 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include <math.h> | ||
|
||
double __exp_finite(double x) { return exp(x); } | ||
double __log_finite(double x) { return log(x); } | ||
double __pow_finite(double x, double y) { return pow(x, y); } | ||
|
||
float __expf_finite(float x) { return expf(x); } | ||
float __logf_finite(float x) { return logf(x); } | ||
float __powf_finite(float x, float y) { return powf(x, y); } |