mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 18:20:10 +01:00
16 lines
232 B
C++
16 lines
232 B
C++
|
|
#include <android/log.h>
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
int __android_log_print(int prio, const char* tag, const char* fmt, ...)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|