1 #ifndef __LOG_LOG_H__ 2 #define __LOG_LOG_H__ 3 4 #include <cutils/log.h> 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 14 15 #endif 16