]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
utime.2: SYNOPSIS: Add _Nullable
authorAlejandro Colomar <alx@kernel.org>
Sat, 3 Dec 2022 20:05:36 +0000 (21:05 +0100)
committerAlejandro Colomar <alx@kernel.org>
Sat, 3 Dec 2022 20:05:36 +0000 (21:05 +0100)
Signed-off-by: Alejandro Colomar <alx@kernel.org>
man2/utime.2

index cee1653443500a907b39142d69c0fc008066df57..c364c439038430d598b70b763058adae0428305c 100644 (file)
@@ -18,11 +18,13 @@ Standard C library
 .nf
 .B #include <utime.h>
 .PP
-.BI "int utime(const char *" filename ", const struct utimbuf *" times );
+.BI "int utime(const char *" filename ,
+.BI "          const struct utimbuf *_Nullable " times );
 .PP
 .B #include <sys/time.h>
 .PP
-.BI "int utimes(const char *" filename ", const struct timeval " times [2]);
+.BI "int utimes(const char *" filename ,
+.BI "          const struct timeval " times "[_Nullable 2]);"
 .fi
 .SH DESCRIPTION
 .B Note: