summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Moreland2017-07-18 18:53:54 -0500
committerSteven Moreland2017-07-18 19:03:20 -0500
commit00fe3ad7287fa62c09d9ab707c71ca9f3f7a8404 (patch)
tree166d386c339cbe93bb6378e053a25cc9562d1759 /libnativeloader
parentd13547347fb77433887be0cc6cabbcc0e9fcf63f (diff)
downloadplatform-system-core-00fe3ad7287fa62c09d9ab707c71ca9f3f7a8404.tar.gz
platform-system-core-00fe3ad7287fa62c09d9ab707c71ca9f3f7a8404.tar.xz
platform-system-core-00fe3ad7287fa62c09d9ab707c71ca9f3f7a8404.zip
system/core: use proper nativehelper headers
libnativeheader exports headers under nativeheader. These were available before incorrectly as global headers in order to give access to jni.h. Test: modules using system/core find headers Bug: 63762847 Change-Id: I86240f7857dd815100cab32ad261aa9a0a54329c
Diffstat (limited to 'libnativeloader')
-rw-r--r--libnativeloader/native_loader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativeloader/native_loader.cpp b/libnativeloader/native_loader.cpp
index 36a2e44bd..7ccd7db95 100644
--- a/libnativeloader/native_loader.cpp
+++ b/libnativeloader/native_loader.cpp
@@ -15,7 +15,7 @@
15 */ 15 */
16 16
17#include "nativeloader/native_loader.h" 17#include "nativeloader/native_loader.h"
18#include "ScopedUtfChars.h" 18#include <nativehelper/ScopedUtfChars.h>
19 19
20#include <dlfcn.h> 20#include <dlfcn.h>
21#ifdef __ANDROID__ 21#ifdef __ANDROID__