diff options
| author | rajdakin <rajdakin@gmail.com> | 2024-09-01 19:06:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-01 19:06:03 +0200 |
| commit | ea807eda045be675301cea084e311bc4feae17f0 (patch) | |
| tree | ca1694d3ef543ec65d384b5570f6c4ed05c48fec /src/wrapped/generated/wrappedlibmtypes.h | |
| parent | 36321f809dfe33d26df26de2913aa1df3f8cfa61 (diff) | |
| download | box64-ea807eda045be675301cea084e311bc4feae17f0.tar.gz box64-ea807eda045be675301cea084e311bc4feae17f0.zip | |
[WRAPPED] Merged types D/K and Y/y in 64bits wrapped libs (#1784)
* [WRAPPED] Merged types D/K and Y/y in 64bits wrapped libs * [WRAPPERS] Version bump * [WRAPPED] Fixed wrapped glib2 on non-LD80BITS builds
Diffstat (limited to 'src/wrapped/generated/wrappedlibmtypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibmtypes.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/wrapped/generated/wrappedlibmtypes.h b/src/wrapped/generated/wrappedlibmtypes.h index 35a7ad2e..07b683a9 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.4.0.23) * + * File automatically generated by rebuild_wrappers.py (v2.5.0.24) * *******************************************************************/ #ifndef __wrappedlibmTYPES_H_ #define __wrappedlibmTYPES_H_ @@ -17,15 +17,19 @@ typedef int32_t (*iFf_t)(float); typedef int32_t (*iFd_t)(double); typedef int64_t (*IFf_t)(float); typedef int64_t (*IFd_t)(double); -typedef int64_t (*IFD_t)(long double); -typedef int64_t (*IFK_t)(double); typedef float (*fFf_t)(float); typedef double (*dFd_t)(double); -typedef long double (*DFD_t)(long double); -typedef double (*KFK_t)(double); typedef float (*fFff_t)(float, float); typedef double (*dFdd_t)(double, double); +#ifdef HAVE_LD80BITS +typedef int64_t (*IFD_t)(long double); +typedef long double (*DFD_t)(long double); +#else // HAVE_LD80BITS +typedef int64_t (*IFD_t)(double); +typedef double (*DFD_t)(double); +#endif + #define SUPER() ADDED_FUNCTIONS() \ GO(fegetround, iFv_t) \ GO(fesetround, iFi_t) \ @@ -34,7 +38,6 @@ typedef double (*dFdd_t)(double, double); GO(llrintf, IFf_t) \ GO(llrint, IFd_t) \ GO(llrintl, IFD_t) \ - GO(llrintl, IFK_t) \ GO(__acosf_finite, fFf_t) \ GO(__acoshf_finite, fFf_t) \ GO(__asinf_finite, fFf_t) \ @@ -64,7 +67,6 @@ typedef double (*dFdd_t)(double, double); GO(pow10, dFd_t) \ GO(rint, dFd_t) \ GO(pow10l, DFD_t) \ - GO(pow10l, KFK_t) \ GO(__atan2f_finite, fFff_t) \ GO(__fmodf_finite, fFff_t) \ GO(__hypotf_finite, fFff_t) \ |