Avoid trying to include <values.h> on Android

The <values.h> header file is not present on Android, and the project
builds there without it.
This commit is contained in:
Fredrik Fornwall 2017-02-09 09:19:31 +01:00 committed by Thomas Graf
parent 3413751795
commit 14db0bff4c

View File

@ -48,7 +48,7 @@
#include <dirent.h>
#ifdef SYS_BSD
# include <float.h>
#else
#elif !defined(__ANDROID__)
# include <values.h>
#endif