unstack - fix ipcvecs
[minix.git] / commands / sync / sync.c
blobab98a5e6a99bf59c491213fa0d0fa47a0747f95e
1 /* sync - flush the file system buffers. Author: Andy Tanenbaum */
3 #include <sys/types.h>
4 #include <unistd.h>
6 int main(void);
8 int main()
10 /* First prize in shortest useful program contest. */
11 /* Highest comment/code ratio */
12 sync();
13 return(0);