summaryrefslogtreecommitdiffstats
path: root/Mac/Compat/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Compat/sync.c')
-rw-r--r--Mac/Compat/sync.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/Mac/Compat/sync.c b/Mac/Compat/sync.c
deleted file mode 100644
index 1a8d3f9..0000000
--- a/Mac/Compat/sync.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* 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;
- }
-}