blob: 76e0b6225693d4c720f54bac6193654525d89fa4 [file] [log] [blame]
/*
* 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;
}