diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-07 15:30:23 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-07 15:30:23 +0000 |
commit | b760923b206db4f67fdfabaa5a16a5cd0bf3951e (patch) | |
tree | 7f0152f50238f9e1f50e86852cea71a236b1384f /Mac/Python/macimport.c | |
parent | 71c5b02859b56a57c6657a783b482a90c4516e33 (diff) | |
download | cpython-git-b760923b206db4f67fdfabaa5a16a5cd0bf3951e.tar.gz |
Got rid of 68k-Mac and other outdated ifdefs.
Diffstat (limited to 'Mac/Python/macimport.c')
-rw-r--r-- | Mac/Python/macimport.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Mac/Python/macimport.c b/Mac/Python/macimport.c index b47a6940f5..82d6438595 100644 --- a/Mac/Python/macimport.c +++ b/Mac/Python/macimport.c @@ -145,15 +145,9 @@ findnamedresource( if ( ok && dataptr != NULL ) { HLock(h); /* XXXX Unsafe if resource not correctly formatted! */ -#ifdef __CFM68K__ - /* for cfm68k we take the second pstring */ - *dataptr = *((*h)+(**h)+1); - memcpy(dataptr+1, (*h)+(**h)+2, (int)*dataptr); -#else /* for ppc we take the first pstring */ *dataptr = **h; memcpy(dataptr+1, (*h)+1, (int)*dataptr); -#endif HUnlock(h); } if ( filerh != -1 ) |