aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-01-26 22:18:07 -0800
committerElliott Hughes <enh@google.com>2015-01-26 22:18:07 -0800
commit9ed69369c0db585e2d3266a5d05c86ca04273eaf (patch)
treef00fe1013427821d9f43c847f95605fa21a90ea4
parentbcc0d3b89334f32c9cbf4ca0266e6b7f551d7b9a (diff)
downloadwebrtc-9ed69369c0db585e2d3266a5d05c86ca04273eaf.tar.gz
Add missing <string.h> and <unistd.h> includes.
How many out of date copies of cpu-features.c do we have in the tree? Change-Id: Ic3cbf83622186d36454fbee4e8627b6b6e30938c
-rw-r--r--src/system_wrappers/source/android/cpu-features.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/system_wrappers/source/android/cpu-features.c b/src/system_wrappers/source/android/cpu-features.c
index 6a5cd8f1aa..749e7b3781 100644
--- a/src/system_wrappers/source/android/cpu-features.c
+++ b/src/system_wrappers/source/android/cpu-features.c
@@ -16,6 +16,8 @@
#include "cpu-features.h"
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
#include <fcntl.h>
#include <errno.h>