diff options
author | Mark Salyzyn <salyzyn@google.com> | 2015-03-31 16:55:42 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2015-03-31 16:58:35 -0700 |
commit | 56b276817690f09305b9657a10f4ae4e1d79a0da (patch) | |
tree | 0da9eac7232f1be01aee4cfd59dc8cdbb97a5905 /libc/bionic | |
parent | 89a4a54104d566bbfd226ed1e3abcf047b871690 (diff) | |
download | bionic-56b276817690f09305b9657a10f4ae4e1d79a0da.zip bionic-56b276817690f09305b9657a10f4ae4e1d79a0da.tar.gz bionic-56b276817690f09305b9657a10f4ae4e1d79a0da.tar.bz2 |
stubs missing include for string.h
stubs.cpp gets string.h inherited from private/android_filesystem_config.h
it should not rely on this in the future. The intent is to move fs_config
function into libcutils and thus deprecate any need for string.h in this
include file.
Change-Id: I946ec1979ef5bbb34fbcb4a99bf2cd79280bb2a3
Diffstat (limited to 'libc/bionic')
-rw-r--r-- | libc/bionic/stubs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/bionic/stubs.cpp b/libc/bionic/stubs.cpp index f9a31b9..7970e7c 100644 --- a/libc/bionic/stubs.cpp +++ b/libc/bionic/stubs.cpp @@ -35,6 +35,7 @@ #include <pwd.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include "private/android_filesystem_config.h" |