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-- file download

8f5291e Jamozed 2020-06-26 23:32:39
0
// sync.c, version 1.0.0
8f5291e Jamozed 2020-06-26 23:32:39
1
// OMKOV coreutils implementation of sync
8f5291e Jamozed 2020-06-26 23:32:39
2
// Copyright (C) 2020, Jakob Wakeling
e2140ec Jamozed 2022-03-06 15:27:45
3
// MIT Licence
8f5291e Jamozed 2020-06-26 23:32:39
4
8f5291e Jamozed 2020-06-26 23:32:39
5
#include <unistd.h>
8f5291e Jamozed 2020-06-26 23:32:39
6
8f5291e Jamozed 2020-06-26 23:32:39
7
int main(void) { sync(); return 0; }
8