summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-01-29 15:47:19 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-01-29 15:47:19 (GMT)
commit4fbb6d9a15f79ce9e430fbc07a020bf4b4b69c47 (patch)
tree9da9e5a35e53b71712a63eff75a1d58d3b8ef68f /Mac
parentd390325bbb1a75b384b0caec98f49bb3ae0baf41 (diff)
downloadcpython-4fbb6d9a15f79ce9e430fbc07a020bf4b4b69c47.zip
cpython-4fbb6d9a15f79ce9e430fbc07a020bf4b4b69c47.tar.gz
cpython-4fbb6d9a15f79ce9e430fbc07a020bf4b4b69c47.tar.bz2
Added cmath module
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/config.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c
index 2cd6c1d..6ba4fc2 100644
--- a/Mac/Modules/config.c
+++ b/Mac/Modules/config.c
@@ -32,6 +32,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
extern void initarray();
extern void initmath();
+#ifndef WITHOUT_COMPLEX
+extern void initcmath();
+#endif
extern void initparser();
extern void initmac();
extern void MacOS_Init();
@@ -134,6 +137,9 @@ struct {
/* The math library seems mostly broken... */
{"math", initmath},
#endif
+#ifndef WITHOUT_COMPLEX
+ {"cmath", initcmath},
+#endif
{"parser", initparser},
{"mac", initmac},
{"MacOS", MacOS_Init},