about summary refs log tree commit diff stats
path: root/src/wrapped
diff options
context:
space:
mode:
authorptitSeb <seebastien.chev@gmail.com>2023-09-02 15:17:32 +0200
committerptitSeb <seebastien.chev@gmail.com>2023-09-02 15:17:32 +0200
commit491cbda0d3b7fd7d58970eac8ba28610b49bca00 (patch)
tree1a865874ab1af566cebee38b6545134ad7fb97c1 /src/wrapped
parentaadd5e8786dc8a207142c84f5180b5c85dc91a66 (diff)
downloadbox64-491cbda0d3b7fd7d58970eac8ba28610b49bca00.tar.gz
box64-491cbda0d3b7fd7d58970eac8ba28610b49bca00.zip
[ANDROID] And yet again another build fix, slowly but surely loosing patience
Diffstat (limited to 'src/wrapped')
-rw-r--r--src/wrapped/wrappedlibc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c
index 156eab8f..acfc2618 100644
--- a/src/wrapped/wrappedlibc.c
+++ b/src/wrapped/wrappedlibc.c
@@ -2545,7 +2545,11 @@ typedef struct jump_buff_x64_s {
 typedef struct __jmp_buf_tag_s {
     jump_buff_x64_t __jmpbuf;
     int              __mask_was_saved;
+    #ifdef ANDROID
+    sigset_t         __saved_mask;
+    #else
     __sigset_t       __saved_mask;
+    #endif
 } __jmp_buf_tag_t;
 
 void EXPORT my_longjmp(x64emu_t* emu, /*struct __jmp_buf_tag __env[1]*/void *p, int32_t __val)