diff options
| author | Alejandro Colomar <alx@kernel.org> | 2022-12-03 21:05:36 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2022-12-03 21:05:36 +0100 |
| commit | 43f54f4d87902fd410637f79f5702caefbd55541 (patch) | |
| tree | 375f8609500e6b6b6fee7b6bfa875eea77521730 | |
| parent | c86fcc52cbc99f5ce26e7d393241452e571645fa (diff) | |
| download | man-pages-43f54f4d87902fd410637f79f5702caefbd55541.tar.gz | |
utime.2: SYNOPSIS: Add _Nullable
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man2/utime.2 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/man2/utime.2 b/man2/utime.2 index cee1653443..c364c43903 100644 --- a/man2/utime.2 +++ b/man2/utime.2 @@ -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: |
