* libc/include/setjmp.h (longjmp): Mark "noreturn" when building with
GCC.
This commit is contained in:
parent
3228065cea
commit
5e66ab7852
|
@ -1,3 +1,8 @@
|
||||||
|
2014-01-19 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/setjmp.h (longjmp): Mark "noreturn" when building with
|
||||||
|
GCC.
|
||||||
|
|
||||||
2014-01-17 Corinna Vinschen <vinschen@redhat.com>
|
2014-01-17 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
* libc/include/pwd.h: Use __foo_VISIBLE macros from sys/cdefs.h.
|
* libc/include/pwd.h: Use __foo_VISIBLE macros from sys/cdefs.h.
|
||||||
|
|
|
@ -11,7 +11,11 @@
|
||||||
|
|
||||||
_BEGIN_STD_C
|
_BEGIN_STD_C
|
||||||
|
|
||||||
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
|
#ifdef __GNUC__
|
||||||
|
#else
|
||||||
|
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval))
|
||||||
|
__attribute__ ((__noreturn__));
|
||||||
|
#endif
|
||||||
int _EXFUN(setjmp,(jmp_buf __jmpb));
|
int _EXFUN(setjmp,(jmp_buf __jmpb));
|
||||||
|
|
||||||
_END_STD_C
|
_END_STD_C
|
||||||
|
|
Loading…
Reference in New Issue