OrionLibC
Barry Importing existing Orion LibC 03048a9 (3 years, 3 months ago)
#include <sys/syscall.h>
#include <sys/types.h>
#include <errno.h>
off_t
lseek(int fd, off_t offset, int whence)
{
int ret;
asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_LSEEK),
"c" (3), "S" (&fd));
if (ret >= 0)
return ret;
errno = -ret;
return -1;
}