mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-10 22:58:21 +02:00
This commit: - drops the unused log headers - updates the header roll script - drops the unused __android_log_vprint stub Acked-by: Valentine Burley <valentine.burley@collabora.com> Reviewed-by: Dhruv Mark Collins <mark@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41254>
15 lines
220 B
C++
15 lines
220 B
C++
#include <android/log.h>
|
|
|
|
extern "C" {
|
|
|
|
int __android_log_write(int prio, const char* tag, const char* text)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int __android_log_print(int prio, const char* tag, const char* fmt, ...)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
}
|