diff options
author | Elliott Hughes <enh@google.com> | 2016-09-17 16:40:59 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-09-17 16:40:59 +0000 |
commit | 42743f1e9ebf0771fea41361e9424f58f8de1cde (patch) | |
tree | 598697137f5a208256d70f133f4d635007bea5a8 /libc/stdio/refill.c | |
parent | 9d4d60b4806d667741566bd4f4ad2a0225d52959 (diff) | |
parent | a9209d7a0ee7ef40f9a14cab2b6756d7e6f8b919 (diff) |
Merge "Fix some easy cases of __ANDROID__ versus __BIONIC__."
Diffstat (limited to 'libc/stdio/refill.c')
-rw-r--r-- | libc/stdio/refill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/refill.c b/libc/stdio/refill.c index 5b0811f6a..a7c4bff82 100644 --- a/libc/stdio/refill.c +++ b/libc/stdio/refill.c @@ -53,7 +53,7 @@ __srefill(FILE *fp) { fp->_r = 0; /* largely a convenience for callers */ -#if !defined(__ANDROID__) +#if !defined(__BIONIC__) /* SysV does not make this test; take it out for compatibility */ if (fp->_flags & __SEOF) return (EOF); |