Staging
v0.5.1
Raw File
/* The equivalent of the Unix 'sync' system call: FlushVol.
   Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
   For now, we only flush the default volume
   (since that's the only volume written to by MacB). */

#include "macdefs.h"

void
sync(void)
{
	if (FlushVol((StringPtr)0, 0) == noErr)
		return;
	else {
		errno= ENODEV;
		return;
	}
}
back to top