sync - update super block
#include <unistd.h>
sync() causes all information in memory that should be on disk to be written out. This includes modified super blocks, modified i-nodes, and delayed block I/O.
The writing, although scheduled, is not necessarily completed before sync() returns.
No errors are defined.