1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/libsrc/rp6502/lseek.c

12 lines
289 B
C
Raw Normal View History

2023-11-17 02:46:16 +00:00
#include <rp6502.h>
#include <unistd.h>
2023-11-17 19:08:51 +00:00
off_t __fastcall__ lseek (int fd, off_t offset, int whence)
2023-11-17 02:46:16 +00:00
{
/* Modified argument order for short stacking offset */
2023-11-17 19:08:51 +00:00
ria_push_long (offset);
ria_push_char (whence);
ria_set_ax (fd);
return ria_call_long_errno (RIA_OP_LSEEK);
2023-11-17 02:46:16 +00:00
}