mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-20 05:44:52 +08:00
29 lines
878 B
Diff
29 lines
878 B
Diff
|
|
diff --git a/main/streams/cast.c b/main/streams/cast.c
|
||
|
|
index 0978ca4d..677fc6dc 100644
|
||
|
|
--- a/main/streams/cast.c
|
||
|
|
+++ b/main/streams/cast.c
|
||
|
|
@@ -102,6 +102,9 @@ static ssize_t stream_cookie_writer(void *cookie, const char *buffer, size_t siz
|
||
|
|
|
||
|
|
# ifdef COOKIE_SEEKER_USES_OFF64_T
|
||
|
|
static int stream_cookie_seeker(void *cookie, off64_t *position, int whence)
|
||
|
|
+# else
|
||
|
|
+static int stream_cookie_seeker(void *cookie, off_t *position, int whence)
|
||
|
|
+# endif
|
||
|
|
{
|
||
|
|
|
||
|
|
*position = php_stream_seek((php_stream *)cookie, (zend_off_t)*position, whence);
|
||
|
|
@@ -111,13 +114,6 @@ static int stream_cookie_seeker(void *cookie, off64_t *position, int whence)
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
-# else
|
||
|
|
-static int stream_cookie_seeker(void *cookie, zend_off_t position, int whence)
|
||
|
|
-{
|
||
|
|
-
|
||
|
|
- return php_stream_seek((php_stream *)cookie, position, whence);
|
||
|
|
-}
|
||
|
|
-# endif
|
||
|
|
|
||
|
|
static int stream_cookie_closer(void *cookie)
|
||
|
|
{
|