* libc/include/setjmp.h (longjmp): Fix copy/paste error.

This commit is contained in:
Corinna Vinschen 2014-01-20 17:23:41 +00:00
parent 5e66ab7852
commit ae691ac535
2 changed files with 6 additions and 1 deletions

View File

@ -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>
* libc/include/setjmp.h (longjmp): Mark "noreturn" when building with

View File

@ -12,9 +12,10 @@
_BEGIN_STD_C
#ifdef __GNUC__
#else
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval))
__attribute__ ((__noreturn__));
#else
void _EXFUN(longjmp,(jmp_buf __jmpb, int __retval));
#endif
int _EXFUN(setjmp,(jmp_buf __jmpb));