diff options
author | Elliott Hughes <enh@google.com> | 2017-08-16 16:30:54 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2017-08-16 16:30:54 -0700 |
commit | 079bff4fa52b0c3c76057451cc9cdecf1827fce0 (patch) | |
tree | 1f2667df4a1ed2dd79cb53a6231cb88d3d9ade13 /libc/include/strings.h | |
parent | 67e7bf137e00a6c9ef79396e40be6b1705a2758c (diff) | |
download | android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.tar.gz android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.tar.bz2 android_bionic-079bff4fa52b0c3c76057451cc9cdecf1827fce0.zip |
Name function arguments in libc headers for Studio.
Second batch of headers...
Bug: http://b/64613623
Test: builds
Change-Id: I8eef043dbf32afee8ff814e9d005f46aee8fa21f
Diffstat (limited to 'libc/include/strings.h')
-rw-r--r-- | libc/include/strings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/include/strings.h b/libc/include/strings.h index 11f32131b..c2e0a5e7e 100644 --- a/libc/include/strings.h +++ b/libc/include/strings.h @@ -55,11 +55,11 @@ __BEGIN_DECLS #endif #if !defined(__i386__) || __ANDROID_API__ >= __ANDROID_API_J_MR2__ -int ffs(int) __INTRODUCED_IN_X86(18); +int ffs(int __i) __INTRODUCED_IN_X86(18); #endif __END_DECLS #include <android/legacy_strings_inlines.h> -#endif /* !defined(_STRINGS_H_) */ +#endif |