summaryrefslogtreecommitdiffstats
blob: f93b3770a3bf6e145d5191323d57f15c9c3e9f45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*Special log.h file for VNDK linking modules*/

#ifndef _LIBS_LOG_LOG_H
#define _LIBS_LOG_LOG_H

#include <android/log.h>
#include <log/log_id.h>
#include <log/log_main.h>
#include <log/log_radio.h>
#include <log/log_read.h>
#include <log/log_time.h>

/*
 * LOG_TAG is the local tag used for the following simplified
 * logging macros.  You can change this preprocessor definition
 * before using the other macros to change the tag.
 */

#ifndef LOG_TAG
#define LOG_TAG NULL
#endif

#endif /*_LIBS_LOG_LOG_H*/