summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/cstdio6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/cstdio b/include/cstdio
index 00b989fad..4b2d961e6 100644
--- a/include/cstdio
+++ b/include/cstdio
@@ -132,9 +132,15 @@ using ::putc;
using ::ungetc;
using ::fread;
using ::fwrite;
+#if !defined(__ANDROID__) || !defined(__USE_FILE_OFFSET64) || \
+ (__ANDROID_API__ >= __ANDROID_API_N__)
using ::fgetpos;
+#endif
using ::fseek;
+#if !defined(__ANDROID__) || !defined(__USE_FILE_OFFSET64) || \
+ (__ANDROID_API__ >= __ANDROID_API_N__)
using ::fsetpos;
+#endif
using ::ftell;
using ::rewind;
using ::clearerr;