From: Alejandro Colomar Date: Tue, 10 Feb 2026 20:59:39 +0000 (+0100) Subject: man/man3/pthread_create.3: SYNOPSIS: Use _Nullable where appropriate X-Git-Tag: man-pages-6.17~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d10b642221253d312be15736035bc6048890a62e;p=thirdparty%2Fman-pages.git man/man3/pthread_create.3: SYNOPSIS: Use _Nullable where appropriate Signed-off-by: Alejandro Colomar --- diff --git a/man/man3/pthread_create.3 b/man/man3/pthread_create.3 index d0490b231..a2c83476f 100644 --- a/man/man3/pthread_create.3 +++ b/man/man3/pthread_create.3 @@ -14,9 +14,9 @@ POSIX threads library .B #include .P .BI "int pthread_create(pthread_t *restrict " thread , -.BI " const pthread_attr_t *restrict " attr , -.BI " typeof(void *(void *)) *" start_routine , -.BI " void *restrict " arg ); +.BI " const pthread_attr_t *_Nullable restrict " attr , +.BI " typeof(void *(void *_Nullable)) *" start_routine , +.BI " void *_Nullable restrict " arg ); .fi .SH DESCRIPTION The