1
0
Fork 0
mirror of https://github.com/hufrea/byedpi.git synced 2025-02-21 10:49:15 +03:00

Replace __ANDROID__ with __ANDROID_NDK__

This commit is contained in:
dovecoteescapee 2024-02-24 19:48:39 +03:00 committed by GitHub
parent dcfefca1c7
commit e12be5db14
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@
#else
#include <arpa/inet.h>
#endif
#if __ANDROID__
#if __ANDROID_NDK__
#include <android/log.h>
#endif
@ -47,7 +47,7 @@ struct packet {
extern struct packet fake_tls;
extern struct packet fake_http;
#if __ANDROID__
#if __ANDROID_NDK__
#define LOG_S ANDROID_LOG_DEBUG
#define LOG_L ANDROID_LOG_VERBOSE
#define LOG(s, str, ...) \