Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 62460bb376fda652834e27d7b8e13ca9a1733a1f authored by cvs2svn on 24 September 2003, 00:51:10 UTC
This commit was manufactured by cvs2svn to create tag 'r231'.
Tip revision: 62460bb
sync.c
/* 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