coreutils

General Software Utilities
git clone http://git.omkov.net/coreutils
Log | Tree | Refs | README | LICENCE | Download

coreutils/src/sync.c (9 lines, 179 B) -rw-r--r-- blame download

012345678
// sync.c, version 1.0.0
// OMKOV coreutils implementation of sync
// Copyright (C) 2020, Jakob Wakeling
// MIT Licence

#include <unistd.h>

int main(void) { sync(); return 0; }