exception.h: Android doesn't have sigsetjmp.

This commit is contained in:
Alexandre Julliard 2013-03-13 12:04:38 +01:00
parent 3faeffc5f4
commit 34ff565708
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__)
#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__ANDROID__)
#define sigjmp_buf jmp_buf
#define sigsetjmp(buf,sigs) setjmp(buf)
#define siglongjmp(buf,val) longjmp(buf,val)