From 0dfa5792bcfa503855522b30eedadbbe791e6fd4 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Thu, 18 Feb 2021 22:23:54 +0100 Subject: [PATCH] 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 Signed-off-by: Michael Kerrisk --- man3/abort.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man3/abort.3 b/man3/abort.3 index 71d555841..b33d23ad1 100644 --- a/man3/abort.3 +++ b/man3/abort.3 @@ -38,7 +38,7 @@ abort \- cause abnormal process termination .nf .B #include .PP -.B void abort(void); +.B noreturn void abort(void); .fi .SH DESCRIPTION The