summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Venkatraman2017-01-25 17:37:00 -0600
committerGerrit Code Review2017-01-25 17:37:01 -0600
commit01678a0c84e1f94420630709fe7aea7b4357f019 (patch)
treeb5f72bed216e45516a7c39b08bb5a35514b00788 /liblog/include_vndk
parent4c38a921c225ef065ab0b3765f193fea64e2d6fb (diff)
parent651f8383e66a32741d78f485c714ced345db7b3d (diff)
downloadplatform-system-core-01678a0c84e1f94420630709fe7aea7b4357f019.tar.gz
platform-system-core-01678a0c84e1f94420630709fe7aea7b4357f019.tar.xz
platform-system-core-01678a0c84e1f94420630709fe7aea7b4357f019.zip
Merge "Revert "Revert "Exporting C headers from system/core"""
Diffstat (limited to 'liblog/include_vndk')
l---------liblog/include_vndk/android1
-rw-r--r--liblog/include_vndk/log/log.h22
2 files changed, 23 insertions, 0 deletions
diff --git a/liblog/include_vndk/android b/liblog/include_vndk/android
new file mode 120000
index 000000000..69fbc0947
--- /dev/null
+++ b/liblog/include_vndk/android
@@ -0,0 +1 @@
../../include/android/ \ No newline at end of file
diff --git a/liblog/include_vndk/log/log.h b/liblog/include_vndk/log/log.h
new file mode 100644
index 000000000..f3eb3fe14
--- /dev/null
+++ b/liblog/include_vndk/log/log.h
@@ -0,0 +1,22 @@
1/*Special log.h file for VNDK linking modules*/
2
3#ifndef _LIBS_LOG_LOG_H
4#define _LIBS_LOG_LOG_H
5
6#include <android/log.h>
7
8/*The following files will be included once they are available*/
9/*#include <log/log_id.h>*/
10/*#include <log/log_radio.h>*/
11
12/*
13 * LOG_TAG is the local tag used for the following simplified
14 * logging macros. You can change this preprocessor definition
15 * before using the other macros to change the tag.
16 */
17
18#ifndef LOG_TAG
19#define LOG_TAG NULL
20#endif
21
22#endif /*_LIBS_LOG_LOG_H*/