summaryrefslogtreecommitdiff
path: root/src/unistd/fsync.c
blob: 5991c66b3172b78790b35adb48980d5697133b0e (plain) (blame)
1
2
3
4
5
6
7
8
#include <unistd.h>
#include "syscall.h"

int fsync(int fd)
{
	//return syscall(SYS_fsync, fd);
	return 0;
}