commit | 3d59f2838a0c996a18dca038cec4b47c157e203c | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Apr 14 18:29:59 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Apr 14 18:29:59 2023 +0000 |
tree | 091825e0f0060f1ef3b8c68f5e5649e774986835 | |
parent | ec50cc6f34305711f6292dc30f1a2417a20e8209 [diff] | |
parent | 7f5c789f35eb908dc7a2bf45dc3326cb960b8d27 [diff] |
Merge "Nullability check for ipc module."
diff --git a/libc/include/sys/ipc.h b/libc/include/sys/ipc.h index c81ec1a..2e2b8cf 100644 --- a/libc/include/sys/ipc.h +++ b/libc/include/sys/ipc.h
@@ -52,6 +52,6 @@ * * Returns a key on success, and returns -1 and sets `errno` on failure. */ -key_t ftok(const char* __path, int __id); +key_t ftok(const char* _Nonnull __path, int __id); __END_DECLS