repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
unstack - fix ipcvecs
[minix.git]
/
commands
/
sync
/
sync.c
blob
ab98a5e6a99bf59c491213fa0d0fa47a0747f95e
1
/* sync - flush the file system buffers. Author: Andy Tanenbaum */
2
3
#include <sys/types.h>
4
#include <unistd.h>
5
6
int
main
(
void
);
7
8
int
main
()
9
{
10
/* First prize in shortest useful program contest. */
11
/* Highest comment/code ratio */
12
sync
();
13
return
(
0
);
14
}