diff --git a/Source/Core/Core/MachineContext.h b/Source/Core/Core/MachineContext.h index 47d665b3b2..889a014755 100644 --- a/Source/Core/Core/MachineContext.h +++ b/Source/Core/Core/MachineContext.h @@ -88,20 +88,7 @@ #elif defined(__linux__) #include - #ifdef ANDROID - #include - typedef struct sigcontext mcontext_t; - typedef struct ucontext - { - uint32_t uc_flags; - struct ucontext* uc_link; - stack_t uc_stack; - mcontext_t uc_mcontext; - // ... - } ucontext_t; - #else - #include - #endif + #include typedef mcontext_t SContext; #if _M_X86_64