exception.h: Android doesn't have sigsetjmp.
This commit is contained in:
parent
3faeffc5f4
commit
34ff565708
|
@ -88,7 +88,7 @@ extern "C" {
|
||||||
|
|
||||||
#else /* USE_COMPILER_EXCEPTIONS */
|
#else /* USE_COMPILER_EXCEPTIONS */
|
||||||
|
|
||||||
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__ANDROID__)
|
||||||
#define sigjmp_buf jmp_buf
|
#define sigjmp_buf jmp_buf
|
||||||
#define sigsetjmp(buf,sigs) setjmp(buf)
|
#define sigsetjmp(buf,sigs) setjmp(buf)
|
||||||
#define siglongjmp(buf,val) longjmp(buf,val)
|
#define siglongjmp(buf,val) longjmp(buf,val)
|
||||||
|
|
Loading…
Reference in New Issue