1 /*Special log.h file for VNDK linking modules*/
2 
3 #pragma once
4 
5 /* Historically vendors have depended on these headers being included. */
6 #include <fcntl.h>
7 #include <pthread.h>
8 #include <unistd.h>
9 
10 #include <android/log.h>
11 #include <log/log_id.h>
12 #include <log/log_main.h>
13 #include <log/log_radio.h>
14 #include <log/log_read.h>
15 #include <log/log_safetynet.h>
16 #include <log/log_system.h>
17 #include <log/log_time.h>
18 
19 /*
20  * LOG_TAG is the local tag used for the following simplified
21  * logging macros.  You can change this preprocessor definition
22  * before using the other macros to change the tag.
23  */
24 
25 #ifndef LOG_TAG
26 #define LOG_TAG NULL
27 #endif
28