ladybird/Userland/Utilities/sync.cpp

15 lines
209 B
C++
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <stdio.h>
#include <unistd.h>
int main(int, char**)
{
sync();
return 0;
}