1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00
Beef/BeefySysLib/platform/android/AndroidCommon.cpp

8 lines
268 B
C++
Raw Normal View History

#include <android/log.h>
#define BFP_PRINTF(...) __android_log_print(ANDROID_LOG_INFO, "Beef", __VA_ARGS__)
#define BFP_ERRPRINTF(...) __android_log_print(ANDROID_LOG_ERROR, "Beef", __VA_ARGS__)
#define BFP_HAS_PTHREAD_GETATTR_NP
#include "../posix/PosixCommon.cpp"