commit | c9889fdf15897e70af011e597f0f2259c7e579ff | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu Jun 25 08:46:06 2020 -0700 |
committer | Elliott Hughes <enh@google.com> | Thu Jun 25 08:46:06 2020 -0700 |
tree | a3b3b38a5a74ac7aaf21ffc6562869cbf63d51ab | |
parent | c17236ee78e49af1266783fb55c91f69f053689f [diff] [blame] |
strings.h: undef ffs/ffsl/ffsll. Protect against software that #defines these, such as mesa3d. Test: treehugger Change-Id: I22e937423967676ea332956289419d48bb7c2cd3
diff --git a/libc/include/strings.h b/libc/include/strings.h index ba69c8d..ff6b925 100644 --- a/libc/include/strings.h +++ b/libc/include/strings.h
@@ -53,6 +53,10 @@ #define __BIONIC_STRINGS_INLINE static __inline #endif +#undef ffs +#undef ffsl +#undef ffsll + __BEGIN_DECLS /** Deprecated. Use memmove() instead. */