POSIX specifies that [sig]longjmp() shall not return, transferring control back to the caller of [sig]setjmp(). Glibc uses __attribute__((__noreturn__)) for [sig]longjmp(). Let's use standard C11 'noreturn' in the manual page. Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man3/setjmp.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man3/setjmp.3 b/man3/setjmp.3 index 7c52f4bea..d9b011b46 100644 --- a/man3/setjmp.3 +++ b/man3/setjmp.3 @@ -31,8 +31,8 @@ setjmp, sigsetjmp, longjmp, siglongjmp \- performing a nonlocal goto .BI "int setjmp(jmp_buf " env ); .BI "int sigsetjmp(sigjmp_buf " env ", int " savesigs ); .PP -.BI "void longjmp(jmp_buf " env ", int " val ); -.BI "void siglongjmp(sigjmp_buf " env ", int " val ); +.BI "noreturn void longjmp(jmp_buf " env ", int " val ); +.BI "noreturn void siglongjmp(sigjmp_buf " env ", int " val ); .fi .PP .RS -4 -- 2.30.1.721.g45526154a5