commit | 7c58e72535b010da86a73bafe3fcd7eb0ec48f3d | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Apr 03 00:22:40 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Apr 03 00:22:40 2015 +0000 |
tree | 157c37e8cdc469341eaab1aa84da32d73c93667b | |
parent | 80ba0a58eb8d3db113d5526d6019ecd5870ed7d5 [diff] | |
parent | ed658b79fb1a1715c2d3e4defcd110ecce5fff4a [diff] |
Merge "Fix Windows strlcpy.c build."
diff --git a/libcutils/strlcpy.c b/libcutils/strlcpy.c index 360abc5..c66246c 100644 --- a/libcutils/strlcpy.c +++ b/libcutils/strlcpy.c
@@ -14,11 +14,10 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <features.h> +#include <sys/types.h> #if defined(__GLIBC__) || defined(_WIN32) -#include <sys/types.h> #include <string.h> #include <cutils/memory.h>