9 lines
140 B
C
9 lines
140 B
C
#include <rp6502.h>
|
|
#include <unistd.h>
|
|
|
|
int __fastcall__ syncfs (int fd)
|
|
{
|
|
ria_set_ax (fd);
|
|
return ria_call_int (RIA_OP_SYNCFS);
|
|
}
|