diff options
Diffstat (limited to 'src/unistd/sync.c')
-rw-r--r-- | src/unistd/sync.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/sync.c b/src/unistd/sync.c new file mode 100644 index 00000000..a49808fd --- /dev/null +++ b/src/unistd/sync.c @@ -0,0 +1,7 @@ +#include <unistd.h> +#include "syscall.h" + +void sync(void) +{ + syscall0(__NR_sync); +} |