Disable realpath for android

This commit is contained in:
Margaux Clerc 2015-08-14 12:12:11 +02:00
parent ced2dc9316
commit e369f0e284

View file

@ -86,7 +86,7 @@ struct _LpConfig{
};
char* lp_realpath(const char* file, char* name) {
#if defined(_WIN32) || defined(__QNX__)
#if defined(_WIN32) || defined(__QNX__) || defined(ANDROID)
return ms_strdup(file);
#else
char * output = realpath(file, name);