summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2016-11-29 18:04:12 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-11-29 18:04:12 +0000
commitca42677ee160a756009650ab232e0735e18b5511 (patch)
treede6f2b9a2fa617d11cf7effe4698cbc6bf4ee357 /tests
parentf84353beb517a29d3ffa815c981ac2a606be7e6b (diff)
parenta383bf437bb50518ef1a834baa5152e8b7abf996 (diff)
downloadextras-ca42677ee160a756009650ab232e0735e18b5511.tar.gz
system/extras: Replace cutils/log.h with android/log.h or log/log.h am: 3d66aa307e am: 55925a0a50 am: 1ce37777ee
am: a383bf437b Change-Id: I6a594a5bd69375e92ea37de75acadbf30af84ae4
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/testUtil/testUtil.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/lib/testUtil/testUtil.c b/tests/lib/testUtil/testUtil.c
index d4dcea24..83dd9464 100644
--- a/tests/lib/testUtil/testUtil.c
+++ b/tests/lib/testUtil/testUtil.c
@@ -25,12 +25,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <time.h>
-
#include <sys/time.h>
#include <sys/wait.h>
+#include <time.h>
-#include <cutils/log.h>
+#include <android/log.h>
#define ALEN(a) (sizeof(a) / sizeof((a)[0])) // Array length
typedef unsigned int bool_t;