diff options
| author | Lily <egzozu.be.bas@gmail.com> | 2023-11-28 10:56:34 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-28 08:56:34 +0100 |
| commit | ae83035380b6f3335873fd92d18fb1099dff6365 (patch) | |
| tree | bd2b7915dc7da0ce0b7acb264664735113a37152 /src/emu | |
| parent | 4566ff6d247a231a67c633321a77e38e973f612b (diff) | |
| download | box64-ae83035380b6f3335873fd92d18fb1099dff6365.tar.gz box64-ae83035380b6f3335873fd92d18fb1099dff6365.zip | |
[ANDROID] Fix Clang Compiling (#1094)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64runf30f.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/x64runf30f.c b/src/emu/x64runf30f.c index bd7c97e9..9f56441d 100644 --- a/src/emu/x64runf30f.c +++ b/src/emu/x64runf30f.c @@ -43,6 +43,11 @@ uintptr_t RunF30F(x64emu_t *emu, rex_t rex, uintptr_t addr) x64emu_t*emu = test->emu; #endif + #ifdef TERMUX + extern int isinff(float); + extern int isnanf(float); + #endif + opcode = F8; switch(opcode) { |