musl-tcc/src/unistd/sync.c

8 lines
84 B
C

#include <unistd.h>
#include "syscall.h"
void sync(void)
{
__syscall(SYS_sync);
}