Declare jump buffers for psp and vita

This commit is contained in:
Vladimir Serbinenko 2020-05-05 17:07:26 +02:00
parent 2144a4779b
commit 7185338d58

View File

@ -35,7 +35,7 @@
#define IA32_CPU_CPU_H__
#include <setjmp.h>
#if defined (_3DS) || defined (__PSL1GHT__)
#if defined (_3DS) || defined (__PSL1GHT__) || defined(PSP) || defined(VITA)
#define sigjmp_buf jmp_buf
#define siglongjmp longjmp
#define sigsetjmp(a,b) setjmp(a)