blob: c295ea7f66ec8b23aadea85a754fe6fbaa8f647a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
bool
do_seek(stab, pos, whence)
STAB *stab;
long pos;
int whence;
{
register STIO *stio;
if (!stab)
goto nuts;
stio = stab_io(stab);
if (!stio || !stio->ifp)
goto nuts;
#ifdef ULTRIX_STDIO_BOTCH
if (feof(stio->ifp))
(void)fseek (stio->ifp, 0L, 2); /* ultrix 1.2 workaround */
#endif
return fseek(stio->ifp, pos, whence) >= 0;
nuts:
if (dowarn)
warn("seek() on unopened file");
errno = EBADF;
return FALSE;
}
|