aboutsummaryrefslogtreecommitdiff
path: root/src/base/io/seek.c
blob: 1be4ee7dd8947f265eb26509e762803fdba08d6b (plain)
1
2
3
4
5
6
7
#include "internal.h"

int
io·seek(io·Stream *s, long off, int whence)
{
    return fseek(s, off, whence);
}