diff options
author | Elliott Hughes <enh@google.com> | 2015-08-17 12:41:46 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-08-17 12:41:46 -0700 |
commit | e17788ceff5c676f3783e5aa25d57a613e9f59db (patch) | |
tree | 5c02145f2500a7c1021415980ab28706b6a0bffb /tools/aapt/XMLNode.cpp | |
parent | e3f0a881c20072a644317330ecf7409c81e96888 (diff) |
Replace HAVE_MS_C_RUNTIME with _WIN32 in frameworks/base/tools.
Change-Id: Ideef62acbf53a442167c9b8038021affffef9e8a
Diffstat (limited to 'tools/aapt/XMLNode.cpp')
-rw-r--r-- | tools/aapt/XMLNode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/XMLNode.cpp b/tools/aapt/XMLNode.cpp index bf31bc137fa8..1860147dc2ee 100644 --- a/tools/aapt/XMLNode.cpp +++ b/tools/aapt/XMLNode.cpp @@ -12,7 +12,7 @@ #include <errno.h> #include <string.h> -#ifndef HAVE_MS_C_RUNTIME +#ifndef _WIN32 #define O_BINARY 0 #endif |