Skip to content

Commit

Permalink
Merge pull request #353 from progrmr/bugfix/ios18-needs-include
Browse files Browse the repository at this point in the history
added #include needed
  • Loading branch information
matux authored Aug 16, 2024
2 parents 456e0cd + b907848 commit e56f3e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
#ifdef __arm64__
#define UC_MCONTEXT uc_mcontext64

typedef ucontext64_t SignalUserContext;
#include <sys/_types/_ucontext64.h>
typedef ucontext64_t SignalUserContext;
#else
#define UC_MCONTEXT uc_mcontext
typedef ucontext_t SignalUserContext;
Expand Down

0 comments on commit e56f3e1

Please sign in to comment.