diff -r 54fee85d9c26 -r f45e26b5f398 platform/skeleton.c --- a/platform/skeleton.c Tue Apr 02 13:39:44 2002 +0000 +++ b/platform/skeleton.c Tue Apr 02 13:41:11 2002 +0000 @@ -207,12 +207,14 @@ int __PHYSFS_platformGrabMutex(void *mutex) { - BAIL_MACRO(ERR_NOT_IMPLEMENTED, 0); + /* not implemented, but can't call __PHYSFS_setError! */ + return(0); } /* __PHYSFS_platformGrabMutex */ void __PHYSFS_platformReleaseMutex(void *mutex) { + /* not implemented, but can't call __PHYSFS_setError! */ } /* __PHYSFS_platformReleaseMutex */ /* end of skeleton.c ... */