aboutsummaryrefslogtreecommitdiff
path: root/contrib/minizip/ioapi.c
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2024-12-26 14:02:31 +0100
committerMark Adler <madler@alumni.caltech.edu>2025-01-31 20:01:41 -0800
commit9d25fa340ef7dc35606ea3373b090e9d4e8267b9 (patch)
treecdbb41700931c62dfce36380d6e3d71d7f150165 /contrib/minizip/ioapi.c
parente677f1f1c71231ba1befb9da6ed02b6db38dedc3 (diff)
downloadzlib-9d25fa340ef7dc35606ea3373b090e9d4e8267b9.tar.gz
zlib-9d25fa340ef7dc35606ea3373b090e9d4e8267b9.tar.bz2
zlib-9d25fa340ef7dc35606ea3373b090e9d4e8267b9.zip
Use consistent comment style in minizip.
Diffstat (limited to 'contrib/minizip/ioapi.c')
-rw-r--r--contrib/minizip/ioapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/ioapi.c b/contrib/minizip/ioapi.c
index 782d324..3dbefe4 100644
--- a/contrib/minizip/ioapi.c
+++ b/contrib/minizip/ioapi.c
@@ -15,7 +15,7 @@
15#endif 15#endif
16 16
17#if defined(__APPLE__) || defined(IOAPI_NO_64) || defined(__HAIKU__) || defined(MINIZIP_FOPEN_NO_64) 17#if defined(__APPLE__) || defined(IOAPI_NO_64) || defined(__HAIKU__) || defined(MINIZIP_FOPEN_NO_64)
18// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions 18/* In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions */
19#define FOPEN_FUNC(filename, mode) fopen(filename, mode) 19#define FOPEN_FUNC(filename, mode) fopen(filename, mode)
20#define FTELLO_FUNC(stream) ftello(stream) 20#define FTELLO_FUNC(stream) ftello(stream)
21#define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin) 21#define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)