summaryrefslogtreecommitdiff
path: root/libc/stdio/refill.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-09-17 16:40:59 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-09-17 16:40:59 +0000
commit42743f1e9ebf0771fea41361e9424f58f8de1cde (patch)
tree598697137f5a208256d70f133f4d635007bea5a8 /libc/stdio/refill.c
parent9d4d60b4806d667741566bd4f4ad2a0225d52959 (diff)
parenta9209d7a0ee7ef40f9a14cab2b6756d7e6f8b919 (diff)
Merge "Fix some easy cases of __ANDROID__ versus __BIONIC__."
Diffstat (limited to 'libc/stdio/refill.c')
-rw-r--r--libc/stdio/refill.c2
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);