commit | 85fc6b141e05a4ea40f5b7dd81bbb902c2474857 | [log] [tgz] |
---|---|---|
author | Zijun Zhao <zijunzhao@google.com> | Wed Mar 08 23:47:42 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Mar 08 23:47:42 2023 +0000 |
tree | dd19a892b2c520291b8cb2fe10655e279dfe0633 | |
parent | 5bfbc5330fff89ad216d555fdd3becfdd23fb601 [diff] | |
parent | f6f0c9dd1b85b76b83cbf6d74fc2a3b0586ae59f [diff] |
Merge "Nullability check for utsname module"
diff --git a/libc/include/sys/utsname.h b/libc/include/sys/utsname.h index 1fa3187..aa8c1a0 100644 --- a/libc/include/sys/utsname.h +++ b/libc/include/sys/utsname.h
@@ -62,6 +62,6 @@ * * Returns 0 on success, and returns -1 and sets `errno` on failure. */ -int uname(struct utsname* __buf); +int uname(struct utsname* _Nonnull __buf); __END_DECLS