diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-08-14 12:17:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-08-14 12:17:18 (GMT) |
commit | dc977a99e0122c0f0d680f8cd3eb9c0cd459b5b7 (patch) | |
tree | 0098ddfd54398d631a37dabd39e4b3141e467257 /Modules | |
parent | 9d19a914d0dc44b1e11265725f99389dd7364561 (diff) | |
download | cpython-dc977a99e0122c0f0d680f8cd3eb9c0cd459b5b7.zip cpython-dc977a99e0122c0f0d680f8cd3eb9c0cd459b5b7.tar.gz cpython-dc977a99e0122c0f0d680f8cd3eb9c0cd459b5b7.tar.bz2 |
Shuffled include's around (name conflict on Mac wrt teclick())
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/stdwinmodule.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Modules/stdwinmodule.c b/Modules/stdwinmodule.c index 675b959..7ada57a 100644 --- a/Modules/stdwinmodule.c +++ b/Modules/stdwinmodule.c @@ -67,6 +67,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "modsupport.h" #include "ceval.h" #include "sysmodule.h" +#ifdef macintosh +#include "macglue.h" +#endif #ifdef macintosh #include ":::stdwin:H:stdwin.h" @@ -104,10 +107,6 @@ static type_lock StdwinLock; /* Lock held when interpreter not locked */ static object *StdwinError; /* Exception stdwin.error */ -#ifdef macintosh -#include "macglue.h" -#endif - /* Window and menu object types declared here because of forward references */ typedef struct { |