From cd4ef7581d64410db8b8b7497b6790679135b43d Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Mon, 17 Aug 2015 12:38:58 -0700 Subject: [PATCH] Replace HAVE_MS_C_RUNTIME with _WIN32 in system/core. Change-Id: I202c3185d177c85d02ee5d9f7e5bf3422c1422db --- include/utils/Errors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;