Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

15 lines
157 B
C

#ifdef PDP11
seek(fd,of,pn)
int fd,of,pn;
{
register long lof;
lof = of;
if(pn >= 3) {
lof *= 512;
pn -= 3;
}
lseek((int)fd,lof,(int)pn);
}
#endif