blob: 855ecc8f73d43b67eebad50ff736d87f13c6d676 [file] [log] [blame]
void gzseek (long offset, int whence)
{
if (whence == 2)
return;
if (whence == 0)
offset -= 1;
if (offset < 0)
return;
while (offset > 0) {
}
}