mirror of
https://github.com/ziglang/zig.git
synced 2025-12-20 21:23:06 +00:00
8 lines
137 B
C
8 lines
137 B
C
#include "stdio_impl.h"
|
|
#include <unistd.h>
|
|
|
|
off_t __stdio_seek(FILE *f, off_t off, int whence)
|
|
{
|
|
return __lseek(f->fd, off, whence);
|
|
}
|