summaryrefslogtreecommitdiff
path: root/storage/connect/ioapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'storage/connect/ioapi.c')
-rw-r--r--storage/connect/ioapi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/connect/ioapi.c b/storage/connect/ioapi.c
index a49da91f7f0..1f339982926 100644
--- a/storage/connect/ioapi.c
+++ b/storage/connect/ioapi.c
@@ -14,8 +14,7 @@
#define _CRT_SECURE_NO_WARNINGS
#endif
-#if defined(__APPLE__) || defined(IOAPI_NO_64)
-// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
+#if defined(IOAPI_NO_64)
#define FOPEN_FUNC(filename, mode) fopen(filename, mode)
#define FTELLO_FUNC(stream) ftello(stream)
#define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)