summaryrefslogtreecommitdiff
path: root/sync.c
blob: ed22a3b4d20e2de214263ffc63c1e4dccd8a504c (plain)
1
2
3
4
5
6
7
8
9
#define _XOPEN_SOURCE
#define _XOPEN_SOURCE_EXTENDED 1
#include <unistd.h>

int main(void)
{
	sync();
	return 0;
}