diff options
| author | Elliott Hughes <enh@google.com> | 2015-01-29 01:49:38 +0000 | 
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2015-01-29 01:49:38 +0000 | 
| commit | 6a0fbc68e203058e3b7d62e95d46f2415bc3ed95 (patch) | |
| tree | 9638d0be10ad12e27bbc9ea98e4ede1107db2f48 | |
| parent | 2588b453fc170f0691d5c503dab2285fef6976c2 (diff) | |
| parent | a3c9d5c3982591042c7c6cb5fb7c32fbd4765832 (diff) | |
| download | frameworks_av-6a0fbc68e203058e3b7d62e95d46f2415bc3ed95.zip frameworks_av-6a0fbc68e203058e3b7d62e95d46f2415bc3ed95.tar.gz frameworks_av-6a0fbc68e203058e3b7d62e95d46f2415bc3ed95.tar.bz2  | |
am a3c9d5c3: am 166776fb: Merge "Add missing includes."
* commit 'a3c9d5c3982591042c7c6cb5fb7c32fbd4765832':
  Add missing includes.
| -rw-r--r-- | cmds/screenrecord/TextRenderer.cpp | 2 | ||||
| -rw-r--r-- | media/libcpustats/ThreadCpuUsage.cpp | 1 | ||||
| -rw-r--r-- | media/libmedia/MemoryLeakTrackUtil.cpp | 1 | ||||
| -rw-r--r-- | media/libstagefright/codecs/amrnb/dec/test/amrnbdec_test.cpp | 1 | 
4 files changed, 5 insertions, 0 deletions
diff --git a/cmds/screenrecord/TextRenderer.cpp b/cmds/screenrecord/TextRenderer.cpp index 6a9176b..01f73e0 100644 --- a/cmds/screenrecord/TextRenderer.cpp +++ b/cmds/screenrecord/TextRenderer.cpp @@ -21,6 +21,8 @@  #include "TextRenderer.h"  #include <assert.h> +#include <malloc.h> +#include <string.h>  namespace android {  #include "FontBitmap.h" diff --git a/media/libcpustats/ThreadCpuUsage.cpp b/media/libcpustats/ThreadCpuUsage.cpp index 7b5b661..b43b36c 100644 --- a/media/libcpustats/ThreadCpuUsage.cpp +++ b/media/libcpustats/ThreadCpuUsage.cpp @@ -19,6 +19,7 @@  #include <errno.h>  #include <stdlib.h> +#include <string.h>  #include <time.h>  #include <utils/Log.h> diff --git a/media/libmedia/MemoryLeakTrackUtil.cpp b/media/libmedia/MemoryLeakTrackUtil.cpp index 66f7161..d31f721 100644 --- a/media/libmedia/MemoryLeakTrackUtil.cpp +++ b/media/libmedia/MemoryLeakTrackUtil.cpp @@ -18,6 +18,7 @@  #include <stdio.h>  #include <stdlib.h> +#include <string.h>  #include <sys/types.h>  #include <unistd.h> diff --git a/media/libstagefright/codecs/amrnb/dec/test/amrnbdec_test.cpp b/media/libstagefright/codecs/amrnb/dec/test/amrnbdec_test.cpp index 521fe2b..41a9e98 100644 --- a/media/libstagefright/codecs/amrnb/dec/test/amrnbdec_test.cpp +++ b/media/libstagefright/codecs/amrnb/dec/test/amrnbdec_test.cpp @@ -26,6 +26,7 @@   * SUCH DAMAGE.   */ +#include <malloc.h>  #include <stdio.h>  #include <stdint.h>  #include <string.h>  | 
