include: Android supports sigsetjmp now.

This commit is contained in:
Alexandre Julliard 2013-07-29 21:16:07 +02:00
parent 1ecfff38bd
commit 3dc0474cfc
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ extern "C" {
#else /* USE_COMPILER_EXCEPTIONS */
#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__ANDROID__)
#if defined(__MINGW32__) || defined(__CYGWIN__)
#define sigjmp_buf jmp_buf
#define sigsetjmp(buf,sigs) setjmp(buf)
#define siglongjmp(buf,val) longjmp(buf,val)