diff options
author | Elliott Hughes <enh@google.com> | 2015-08-17 20:51:00 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-08-17 20:51:00 +0000 |
commit | eba23aaa765822c5ed8a152af00da1998d61409e (patch) | |
tree | 5c02145f2500a7c1021415980ab28706b6a0bffb /tools/aidl/aidl_language.cpp | |
parent | e3f0a881c20072a644317330ecf7409c81e96888 (diff) | |
parent | e17788ceff5c676f3783e5aa25d57a613e9f59db (diff) |
Merge "Replace HAVE_MS_C_RUNTIME with _WIN32 in frameworks/base/tools."
Diffstat (limited to 'tools/aidl/aidl_language.cpp')
-rw-r--r-- | tools/aidl/aidl_language.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aidl/aidl_language.cpp b/tools/aidl/aidl_language.cpp index cd6a3bd5dfc1..5fab6c26431a 100644 --- a/tools/aidl/aidl_language.cpp +++ b/tools/aidl/aidl_language.cpp @@ -3,7 +3,7 @@ #include <string.h> #include <stdlib.h> -#ifdef HAVE_MS_C_RUNTIME +#ifdef _WIN32 int isatty(int fd) { return (fd == 0); |