mirror of
https://github.com/MopriaAlliance/CUPS-for-Android.git
synced 2025-08-03 02:54:36 +08:00
13 lines
306 B
C
13 lines
306 B
C
#include <locale.h>
|
|
#include <pthread.h>
|
|
|
|
// 08/28/2018 Mopria-notice: localeconv not present in Android.
|
|
inline struct lconv *localeconv(void) {
|
|
return NULL;
|
|
}
|
|
|
|
// 08/28/2018 Mopria-notice: pthread_cancel not present in Android
|
|
void pthread_cancel(int thread) {
|
|
// Ignore thread cancel attempts
|
|
}
|