diff options
author | Elliott Hughes <enh@google.com> | 2015-08-17 12:38:58 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-08-17 12:38:58 -0700 |
commit | cd4ef7581d64410db8b8b7497b6790679135b43d (patch) | |
tree | 8ed40b118b6939f51b37c56fa4420cf727a9bb39 /include/utils | |
parent | 428f626d1ba9819156549c4ce5b044aadbda014b (diff) | |
download | core-cd4ef7581d64410db8b8b7497b6790679135b43d.tar.gz core-cd4ef7581d64410db8b8b7497b6790679135b43d.tar.bz2 core-cd4ef7581d64410db8b8b7497b6790679135b43d.zip |
Replace HAVE_MS_C_RUNTIME with _WIN32 in system/core.
Change-Id: I202c3185d177c85d02ee5d9f7e5bf3422c1422db
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/Errors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/utils/Errors.h b/include/utils/Errors.h index 9402614f6..06565eab5 100644 --- a/include/utils/Errors.h +++ b/include/utils/Errors.h @@ -23,7 +23,7 @@ namespace android { // use this type to return error codes -#ifdef HAVE_MS_C_RUNTIME +#ifdef _WIN32 typedef int status_t; #else typedef int32_t status_t; |