Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / include / setjmp.h
bloba2830b2755047c2d09aefe40ffaa1a635e31f0d6
1 /*
2 setjmp.h
3 stubs for future use.
4 */
6 #ifndef _SETJMP_H_
7 #define _SETJMP_H_
9 #include "_ansi.h"
10 #include <machine/setjmp.h>
12 _BEGIN_STD_C
14 #ifdef __GNUC__
15 void longjmp (jmp_buf __jmpb, int __retval)
16 __attribute__ ((__noreturn__));
17 #else
18 void longjmp (jmp_buf __jmpb, int __retval);
19 #endif
20 int setjmp (jmp_buf __jmpb);
22 _END_STD_C
24 #endif /* _SETJMP_H_ */