* libc/include/setjmp.h (longjmp): Fix copy/paste error.
This commit is contained in:
parent
5e66ab7852
commit
ae691ac535
@ -1,3 +1,7 @@
|
|||||||
|
2014-01-20 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/setjmp.h (longjmp): Fix copy/paste error.
|
||||||
|
|
||||||
2014-01-19 Corinna Vinschen <vinschen@redhat.com>
|
2014-01-19 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
* libc/include/setjmp.h (longjmp): Mark "noreturn" when building with
|
* libc/include/setjmp.h (longjmp): Mark "noreturn" when building with
|
||||||
|
@ -12,9 +12,10 @@
|
|||||||
_BEGIN_STD_C
|
_BEGIN_STD_C
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#else
|
|
||||||
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval))
|
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval))
|
||||||
__attribute__ ((__noreturn__));
|
__attribute__ ((__noreturn__));
|
||||||
|
#else
|
||||||
|
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
|
||||||
#endif
|
#endif
|
||||||
int _EXFUN(setjmp,(jmp_buf __jmpb));
|
int _EXFUN(setjmp,(jmp_buf __jmpb));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user