diff options
author | Max Horn | 2011-05-03 11:27:44 +0200 |
---|---|---|
committer | Max Horn | 2011-05-03 11:27:44 +0200 |
commit | 3d4e9fe674d2daf59ff4b481fc2f89f77b390a4f (patch) | |
tree | 4141b74cc075e91f5bc094af0e27d7a17ed884e6 /backends/platform/android | |
parent | 3201bb46bdfb0742b7a5464d59aaa672e1a5f022 (diff) | |
download | scummvm-rg350-3d4e9fe674d2daf59ff4b481fc2f89f77b390a4f.tar.gz scummvm-rg350-3d4e9fe674d2daf59ff4b481fc2f89f77b390a4f.tar.bz2 scummvm-rg350-3d4e9fe674d2daf59ff4b481fc2f89f77b390a4f.zip |
BACKENDS: Allow various files to use stuff from time.h
Diffstat (limited to 'backends/platform/android')
-rw-r--r-- | backends/platform/android/android.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index c7f62f523b..7cf1e988fc 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -25,6 +25,9 @@ #if defined(__ANDROID__) +// Allow use of stuff in <time.h> +#define FORBIDDEN_SYMBOL_EXCEPTION_time_h + #include <sys/time.h> #include <sys/resource.h> #include <sys/system_properties.h> |