qemu-arm/test_main: Include setjmp.h because it's used by gc_collect.

And it's no longer unconditionally included by nlr.h, only if NLR_SETJMP
is defined.
This commit is contained in:
Damien George 2017-12-19 11:15:41 +11:00
parent 6a3a742a6c
commit d7a52e1539

View File

@ -3,6 +3,7 @@
#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <setjmp.h>
#include "py/obj.h"
#include "py/compile.h"