aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/sync.c
blob: 70418d61d9732e59037916e24377e3c55882c668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>
#include "syscall.h"

void sync(void)
{
	__syscall(SYS_sync);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif