repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.30~pre4.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
sys
/
ftell.c
blob
3f109163ed92c16d291200d9cf991f49394b174c
1
/*
2
* sys/ftell.c
3
*
4
* We can't seek, but we can at least tell...
5
*/
6
7
#include <stdio.h>
8
#include
"sys/file.h"
9
10
long
ftell
(
FILE
*
stream
)
11
{
12
int
fd
=
fileno
(
stream
);
13
struct
file_info
*
fp
= &
__file_info
[
fd
];
14
15
return
fp
->
i
.
offset
;
16
}