summaryrefslogtreecommitdiffstats
path: root/Mac/Python
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-01-09 22:24:56 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-01-09 22:24:56 (GMT)
commit91faef83ca4c4bb9989e43dcbeb9b2618d452c8a (patch)
treea1562a6c3226d272514ed7a5e094268dcf6f8bc7 /Mac/Python
parent6ff228c6d2434d2d0e8483ba117b1303ab7b27d2 (diff)
downloadcpython-91faef83ca4c4bb9989e43dcbeb9b2618d452c8a.zip
cpython-91faef83ca4c4bb9989e43dcbeb9b2618d452c8a.tar.gz
cpython-91faef83ca4c4bb9989e43dcbeb9b2618d452c8a.tar.bz2
Don't need to define c2pstrcpy() on Carbon: it's in CarbonLib.
Diffstat (limited to 'Mac/Python')
-rw-r--r--Mac/Python/macglue.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index ded0ad1..0763eaa 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -345,6 +345,7 @@ Pstring(char *str)
return buf;
}
+#if !TARGET_API_MAC_CARBON
void
c2pstrcpy(unsigned char *dst, const char *src)
{
@@ -355,6 +356,7 @@ c2pstrcpy(unsigned char *dst, const char *src)
strncpy((char *)dst+1, src, len);
dst[0] = len;
}
+#endif
/* Like strerror() but for Mac OS error numbers */
char *PyMac_StrError(int err)