summaryrefslogtreecommitdiff
path: root/src/osdef1.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/osdef1.h.in')
-rw-r--r--src/osdef1.h.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osdef1.h.in b/src/osdef1.h.in
index 5519104c9..825fe94d3 100644
--- a/src/osdef1.h.in
+++ b/src/osdef1.h.in
@@ -65,8 +65,10 @@ extern void memmove(char *, char *, int);
# endif
# endif
#endif
-/* used inside of FD_ZERO macro: */
+#ifndef __BIONIC__ // Android's libc #defines bzero to memset.
+// used inside of FD_ZERO macro
extern void bzero(void *, size_t);
+#endif
#ifdef HAVE_SETSID
extern pid_t setsid(void);
#endif