Files
oldlinux-files/study/linux-travel/MINIX-1.5/1.5/Source/commands/sync.c
2024-02-19 00:25:23 -05:00

8 lines
144 B
C

/* sync - flush the file system buffers. Author: Andy Tanenbaum */
main()
{
/* First prize in shortest useful program contest. */
sync();
}