summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Compat/getwd.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Mac/Compat/getwd.c b/Mac/Compat/getwd.c
index df96d42..738d756 100644
--- a/Mac/Compat/getwd.c
+++ b/Mac/Compat/getwd.c
@@ -53,12 +53,8 @@ getwd(char *cwd)
sprintf(cwd, "I/O error %d in PBHGetVolSync", err);
return NULL;
}
-#if TARGET_API_MAC_CARBON
p2cstrcpy(cwd, (StringPtr)cwd);
ecwd = strchr(cwd, EOS);
-#else
- ecwd= strchr((const char *)p2cstr((unsigned char*)cwd), EOS);
-#endif
ebuf= buf;
*ebuf = EOS;
@@ -77,12 +73,8 @@ getwd(char *cwd)
return NULL;
}
dirid= pb.d.ioDrParID;
-#if TARGET_API_MAC_CARBON
p2cstrcpy(ebuf, (StringPtr)ebuf);
ebuf += strlen(ebuf);
-#else
- ebuf += strlen((const char *)p2cstr((unsigned char *)ebuf));
-#endif
/* Should check for buf overflow */
}
}