From cd03c9b8d1f4d43ab7b010d02287dec1805ada34 Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Thu, 18 May 2023 20:53:14 +0200 Subject: fflush.3, unlocked_stdio.3: SYNOPSIS: The streams can be null Cc: Xi Ruoyao Signed-off-by: Alejandro Colomar --- man3/fflush.3 | 2 +- man3/unlocked_stdio.3 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/man3/fflush.3 b/man3/fflush.3 index 327786cef..2098bba08 100644 --- a/man3/fflush.3 +++ b/man3/fflush.3 @@ -25,7 +25,7 @@ Standard C library .nf .B #include .PP -.BI "int fflush(FILE *" stream ); +.BI "int fflush(FILE *_Nullable " stream ); .fi .SH DESCRIPTION For output streams, diff --git a/man3/unlocked_stdio.3 b/man3/unlocked_stdio.3 index faab29f06..feed708db 100644 --- a/man3/unlocked_stdio.3 +++ b/man3/unlocked_stdio.3 @@ -23,7 +23,7 @@ Standard C library .BI "int feof_unlocked(FILE *" stream ); .BI "int ferror_unlocked(FILE *" stream ); .BI "int fileno_unlocked(FILE *" stream ); -.BI "int fflush_unlocked(FILE *" stream ); +.BI "int fflush_unlocked(FILE *_Nullable " stream ); .PP .BI "int fgetc_unlocked(FILE *" stream ); .BI "int fputc_unlocked(int " c ", FILE *" stream ); -- cgit v1.2.3