mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
9 lines
143 B
C
9 lines
143 B
C
#include <rp6502.h>
|
|
#include <errno.h>
|
|
|
|
int __fastcall__ close (int fd)
|
|
{
|
|
ria_set_ax (fd);
|
|
return ria_call_int_errno (RIA_OP_CLOSE);
|
|
}
|