Files
cc65/libsrc/rp6502/lseek.c
rumbledethumps e6c138dc03 directory ops
2025-10-14 23:11:23 -07:00

11 lines
223 B
C

#include <rp6502.h>
#include <unistd.h>
off_t __fastcall__ lseek (int fd, off_t offset, int whence)
{
ria_push_long (offset);
ria_push_char (whence);
ria_set_ax (fd);
return ria_call_long (RIA_OP_LSEEK);
}