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
1 changed files with 3 additions and 3 deletions

View File

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