2005-04-21 16:53:53 +02:00
|
|
|
/* sync - flush the file system buffers. Author: Andy Tanenbaum */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2012-03-24 16:16:34 +01:00
|
|
|
int main(void);
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
/* First prize in shortest useful program contest. */
|
|
|
|
/* Highest comment/code ratio */
|
|
|
|
sync();
|
|
|
|
return(0);
|
|
|
|
}
|