Make the prototype match the declaration in the GUSI header files.

This commit is contained in:
Jack Jansen 2002-06-26 20:43:24 +00:00
parent c5601f4839
commit e0c62b4db0

View File

@ -5,13 +5,13 @@
#include "macdefs.h" #include "macdefs.h"
int void
sync(void) sync(void)
{ {
if (FlushVol((StringPtr)0, 0) == noErr) if (FlushVol((StringPtr)0, 0) == noErr)
return 0; return;
else { else {
errno= ENODEV; errno= ENODEV;
return -1; return;
} }
} }