13 lines
152 B
C
13 lines
152 B
C
|
#include <lib.h>
|
||
|
#define sync _sync
|
||
|
#include <unistd.h>
|
||
|
|
||
|
PUBLIC int fsync(int fd)
|
||
|
{
|
||
|
message m;
|
||
|
|
||
|
m.m1_i1 = fd;
|
||
|
|
||
|
return(_syscall(FS, FSYNC, &m));
|
||
|
}
|