--- a/src/platform_beos.cpp Sun Mar 11 03:56:24 2012 -0400
+++ b/src/platform_beos.cpp Sun Mar 11 04:19:36 2012 -0400
@@ -200,18 +200,6 @@
} /* __PHYSFS_platformGetThreadID */
-char *__PHYSFS_platformRealPath(const char *path)
-{
- BPath normalized(path, NULL, true); /* force normalization of path. */
- const char *resolved_path = normalized.Path();
- BAIL_IF_MACRO(resolved_path == NULL, ERR_NO_SUCH_FILE, NULL);
- char *retval = (char *) allocator.Malloc(strlen(resolved_path) + 1);
- BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
- strcpy(retval, resolved_path);
- return(retval);
-} /* __PHYSFS_platformRealPath */
-
-
void *__PHYSFS_platformCreateMutex(void)
{
return(new BLocker("PhysicsFS lock", true));