David Reveman | 74e99bb | 2019-02-15 18:47:25 -0500 | [diff] [blame] | 1 | #ifndef __LOG_LOG_H__ |
2 | #define __LOG_LOG_H__ | ||||
3 | |||||
4 | #include <cutils/log.h> | ||||
C Stout | 8b21c20 | 2024-01-31 17:28:40 -0800 | [diff] [blame] | 5 | #include <stdarg.h> |
6 | #include <stdint.h> | ||||
7 | |||||
8 | #ifdef __Fuchsia__ | ||||
9 | extern "C" { | ||||
10 | void gfxstream_fuchsia_log(int8_t severity, const char* tag, const char* file, int line, | ||||
11 | const char* format, va_list va); | ||||
12 | } | ||||
13 | #endif | ||||
David Reveman | 74e99bb | 2019-02-15 18:47:25 -0500 | [diff] [blame] | 14 | |
15 | #endif |