summaryrefslogtreecommitdiff
path: root/Userland/sync.cpp
blob: aeed3ac5dcce45ee7e7af9dc9a3f7656d7732300 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <unistd.h>

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