aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/__stdio_seek.c
blob: aa62f1ddb11c8aabe0207cd0598c6e404236415a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "stdio_impl.h"
#include <unistd.h>

off_t __stdio_seek(FILE *f, off_t off, int whence)
{
	return __lseek(f->fd, off, whence);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif