diff options
author | 2003-11-19 22:52:23 +0000 | |
---|---|---|
committer | 2003-11-19 22:52:23 +0000 | |
commit | 4bae2d5e46b5135dba523616fd0960fc915eb120 (patch) | |
tree | 730899029b05968513eadb26fe1e3c4ac22653d1 /Modules/structmodule.c | |
parent | Getting rid of one more TARGET_API_MAC_OSX. (diff) | |
download | cpython-4bae2d5e46b5135dba523616fd0960fc915eb120.tar.gz cpython-4bae2d5e46b5135dba523616fd0960fc915eb120.tar.bz2 cpython-4bae2d5e46b5135dba523616fd0960fc915eb120.zip |
Getting rid of code dependent on GUSI or the MetroWerks compiler.
Diffstat (limited to 'Modules/structmodule.c')
-rw-r--r-- | Modules/structmodule.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Modules/structmodule.c b/Modules/structmodule.c index 22f1c549772..b78231f4d3c 100644 --- a/Modules/structmodule.c +++ b/Modules/structmodule.c @@ -41,15 +41,6 @@ static PyObject *StructError; /* Define various structs to figure out the alignments of types */ -#ifdef __MWERKS__ -/* -** XXXX We have a problem here. There are no unique alignment rules -** on the PowerPC mac. -*/ -#ifdef __powerc -#pragma options align=mac68k -#endif -#endif /* __MWERKS__ */ typedef struct { char c; short x; } st_short; typedef struct { char c; int x; } st_int; |