6a73e85ad1
. only good for obsolete K&R support . also remove a stray ansi.h and the proto cmd
14 lines
255 B
C
14 lines
255 B
C
/* sync - flush the file system buffers. Author: Andy Tanenbaum */
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void);
|
|
|
|
int main()
|
|
{
|
|
/* First prize in shortest useful program contest. */
|
|
/* Highest comment/code ratio */
|
|
sync();
|
|
return(0);
|
|
}
|