commit | ce56be806e3e2a5dec50f650eaea3264aba4d0da | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Aug 17 12:38:58 2015 -0700 |
committer | Elliott Hughes <enh@google.com> | Mon Aug 17 12:38:58 2015 -0700 |
tree | 8ed40b118b6939f51b37c56fa4420cf727a9bb39 | |
parent | 1dd2594890779cf0d1218cb2edecbd13962612f1 [diff] |
Replace HAVE_MS_C_RUNTIME with _WIN32 in system/core. Change-Id: I202c3185d177c85d02ee5d9f7e5bf3422c1422db
diff --git a/include/utils/Errors.h b/include/utils/Errors.h index 9402614..06565ea 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;