about summary refs log tree commit diff stats
path: root/src/emu/x64emu_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/x64emu_private.h')
-rw-r--r--src/emu/x64emu_private.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/emu/x64emu_private.h b/src/emu/x64emu_private.h
index a9d73937..21f270f1 100644
--- a/src/emu/x64emu_private.h
+++ b/src/emu/x64emu_private.h
@@ -2,6 +2,7 @@
 #define __X86EMU_PRIVATE_H_
 
 #include "regs.h"
+#include "os.h"
 
 typedef struct box64context_s box64context_t;
 typedef struct x64_ucontext_s x64_ucontext_t;
@@ -51,13 +52,6 @@ typedef struct emu_flags_s {
     uint32_t    jmpbuf_ready:1;   // the jmpbuf in the emu is ok and don't need refresh
 } emu_flags_t;
 
-#ifdef ANDROID
-#include <setjmp.h>
-#define JUMPBUFF sigjmp_buf
-#else
-#define JUMPBUFF struct __jmp_buf_tag
-#endif
-
 #define N_SCRATCH 200
 
 typedef struct x64emu_s {