zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
mingw
/
stdio
/
ftello.c
Top
1
#
include
<stdio.h>
2
3
_off_t
ftello
(
FILE
*
stream
)
{
4
return
(
_off_t
)
ftello64
(
stream
)
;
5
}