source: trunk/minix/commands/simple/sync.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 269 bytes
Line 
1/* sync - flush the file system buffers. Author: Andy Tanenbaum */
2
3#include <sys/types.h>
4#include <unistd.h>
5
6_PROTOTYPE(int main, (void));
7
8int main()
9{
10/* First prize in shortest useful program contest. */
11/* Highest comment/code ratio */
12 sync();
13 return(0);
14}
Note: See TracBrowser for help on using the repository browser.