summaryrefslogtreecommitdiffstats
path: root/historic/sync.c
blob: 76e0b6225693d4c720f54bac6193654525d89fa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * sync.c - flush Linux filesystem buffers
 *
 * Copyright 1992 Linus Torvalds.
 * This file may be redistributed as per the GNU copyright.
 */

#include <unistd.h>
#include <stdlib.h>

int main(int argc, char **argv) {
	sync();
	return 0;
}