diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-06 10:56:02 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-06 10:56:02 +0200 |
| commit | 307a019cb8e92051fe8fda897a784bba30284e6e (patch) | |
| tree | dc2a20644f3eec8dbdd4a2fedd17e1ecf98f4627 /src/wrapped/generated/wrappedlibmtypes.h | |
| parent | 4ca16188c215cdbb001f0ed2794c50d812197673 (diff) | |
| download | box64-307a019cb8e92051fe8fda897a784bba30284e6e.tar.gz box64-307a019cb8e92051fe8fda897a784bba30284e6e.zip | |
Try to add complex function in libm
Diffstat (limited to 'src/wrapped/generated/wrappedlibmtypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibmtypes.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/wrapped/generated/wrappedlibmtypes.h b/src/wrapped/generated/wrappedlibmtypes.h index 139066b1..076e6945 100644 --- a/src/wrapped/generated/wrappedlibmtypes.h +++ b/src/wrapped/generated/wrappedlibmtypes.h @@ -1,5 +1,5 @@ /******************************************************************* - * File automatically generated by rebuild_wrappers.py (v2.2.0.16) * + * File automatically generated by rebuild_wrappers.py (v2.2.0.17) * *******************************************************************/ #ifndef __wrappedlibmTYPES_H_ #define __wrappedlibmTYPES_H_ @@ -11,19 +11,13 @@ #define ADDED_FUNCTIONS() #endif -typedef uint64_t (*UFV_t)(...); typedef float (*fFf_t)(float); typedef double (*dFd_t)(double); +typedef complexf_t (*xFx_t)(complexf_t); typedef float (*fFff_t)(float, float); typedef double (*dFdd_t)(double, double); #define SUPER() ADDED_FUNCTIONS() \ - GO(cacosf, UFV_t) \ - GO(cacoshf, UFV_t) \ - GO(casinf, UFV_t) \ - GO(casinhf, UFV_t) \ - GO(catanf, UFV_t) \ - GO(catanhf, UFV_t) \ GO(__acosf_finite, fFf_t) \ GO(__acoshf_finite, fFf_t) \ GO(__asinf_finite, fFf_t) \ @@ -46,6 +40,8 @@ typedef double (*dFdd_t)(double, double); GO(__log_finite, dFd_t) \ GO(__sinh_finite, dFd_t) \ GO(__sqrt_finite, dFd_t) \ + GO(catanf, xFx_t) \ + GO(catanhf, xFx_t) \ GO(__atan2f_finite, fFff_t) \ GO(__fmodf_finite, fFff_t) \ GO(__hypotf_finite, fFff_t) \ |