From 419d80639f4138b76aaed7a78e67c15b5901990e Mon Sep 17 00:00:00 2001 From: Snaipe Date: Wed, 25 Mar 2015 20:24:41 +0100 Subject: [PATCH] Added missing jmp_buf type --- src/posix-compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix-compat.c b/src/posix-compat.c index 7c8b8ea..636c8a5 100644 --- a/src/posix-compat.c +++ b/src/posix-compat.c @@ -72,7 +72,7 @@ static inline void get_stack_info(struct stack_info *stack) { stack->size = mbi.RegionSize; } -static g_jmp; +static jmp_buf g_jmp; static void resume_child(void) { longjmp(g_jmp, 1);