Revived various of the compatability routines and made them Carbon-compliant. This is needed because the initial carbon-python does not use GUSI.
diff --git a/Mac/Compat/macstat.c b/Mac/Compat/macstat.c
index 8c67994..ee2c099 100644
--- a/Mac/Compat/macstat.c
+++ b/Mac/Compat/macstat.c
@@ -28,10 +28,7 @@
 	pb.d.ioFDirIndex = 0;
 	pb.d.ioDrDirID = 0;
 	pb.f.ioFVersNum = 0; /* Fix found by Timo! See Tech Note 102 */
-	if (hfsrunning())
-		err = PBGetCatInfoSync((CInfoPBPtr)&pb);
-	else
-		err = PBGetFInfoSync((ParmBlkPtr)&pb);
+	err = PBGetCatInfoSync((CInfoPBPtr)&pb);
 	if (err != noErr) {
 		errno = ENOENT;
 		return -1;