diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-07 03:59:34 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-07 03:59:34 +0000 |
commit | e163d9823a584e5541bbbbd637a9890b33df9c34 (patch) | |
tree | f272fdb2270a66c84cd93fc237814942275bad25 /PC/config.c | |
parent | f865cabe88287e7c722eed7dc0a26a498760060f (diff) | |
download | cpython-e163d9823a584e5541bbbbd637a9890b33df9c34.tar.gz |
Removed WITH_CYCLE_GC #ifdef-ery. Holes:
+ I'm not sure what to do about configure.in. Left it alone.
+ Ditto pyexpat.c. Fred or Martin will know what to do.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/PC/config.c b/PC/config.c index 38c6b50997..64eb9623d6 100644 --- a/PC/config.c +++ b/PC/config.c @@ -12,9 +12,7 @@ extern void initaudioop(void); extern void initbinascii(void); extern void initcmath(void); extern void initerrno(void); -#ifdef WITH_CYCLE_GC extern void initgc(void); -#endif #ifndef MS_WIN64 extern void initimageop(void); #endif @@ -63,9 +61,7 @@ struct _inittab _PyImport_Inittab[] = { {"binascii", initbinascii}, {"cmath", initcmath}, {"errno", initerrno}, -#ifdef WITH_CYCLE_GC {"gc", initgc}, -#endif #ifndef MS_WIN64 {"imageop", initimageop}, #endif |