Merge "Nullability check for ipc module." am: 3d59f2838a am: 8ce2187b33 am: 3b7c481df4

Original change: https://android-review.googlesource.com/c/platform/bionic/+/2537352

Change-Id: I768b389647c7cb4fc6196cc40961f2753636d6f3
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot 2023-04-14 20:08:39 +00:00 committed by Automerger Merge Worker
commit 7d9d659c28

View file

@ -52,6 +52,6 @@ __BEGIN_DECLS
*
* 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