mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-23 05:25:11 +00:00
Include setjmp.h in qemu/osdep.h (bug fix for w64)
setjmp must be declared before sysemu/os-win32.h because it is redefined there for 64 bit Windows. Backports commit e89fdafb58038038e3ccb860c5e1068ba063bac8 from qemu
This commit is contained in:
parent
2f30651c40
commit
904b3c467e
|
@ -64,6 +64,9 @@
|
|||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
#include <assert.h>
|
||||
/* setjmp must be declared before sysemu/os-win32.h
|
||||
* because it is redefined there. */
|
||||
#include <setjmp.h>
|
||||
#include <signal.h>
|
||||
|
||||
#ifdef __OpenBSD__
|
||||
|
|
Loading…
Reference in a new issue