summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/sync.c
blob: 47818ce98366eb2090f0ba509e732811065af2e5 (plain)
1
2
3
4
5
6
7
8
#include "asm/unistd_64.h" // for __NR_sync

#include <syscall.h> // for __syscall_0, syscall

void sync(void)
{
	syscall(sync);
}