From b760923b206db4f67fdfabaa5a16a5cd0bf3951e Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Tue, 7 Aug 2001 15:30:23 +0000 Subject: Got rid of 68k-Mac and other outdated ifdefs. --- Mac/Python/macimport.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Mac/Python/macimport.c') 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 ) -- cgit v1.2.1