pci: don't do sanity check for missing pci bus, the check can misfire.
[minix.git] / commands / simple / sync.c
blobadb7318a963bae87bb7fea5f340d1a4154ed536c
1 /* sync - flush the file system buffers. Author: Andy Tanenbaum */
3 #include <sys/types.h>
4 #include <unistd.h>
6 _PROTOTYPE(int main, (void));
8 int main()
10 /* First prize in shortest useful program contest. */
11 /* Highest comment/code ratio */
12 sync();
13 return(0);