abort.3: SYNOPSIS: Use 'noreturn' in prototypes

POSIX specifies that abort() shall not return.
Glibc uses __attribute__((__noreturn__)).
Let's use standard C11 'noreturn' in the manual page.

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2021-02-18 22:23:54 +01:00 committed by Michael Kerrisk
parent 2b15f8c59e
commit 0dfa5792bc
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ abort \- cause abnormal process termination
.nf
.B #include <stdlib.h>
.PP
.B void abort(void);
.B noreturn void abort(void);
.fi
.SH DESCRIPTION
The