From 4fbb6d9a15f79ce9e430fbc07a020bf4b4b69c47 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 29 Jan 1996 15:47:19 +0000 Subject: [PATCH] Added cmath module --- Mac/Modules/config.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index 2cd6c1dba7..6ba4fc280f 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(); @@ -133,6 +136,9 @@ struct { #ifndef SYMANTEC__CFM68K__ /* The math library seems mostly broken... */ {"math", initmath}, +#endif +#ifndef WITHOUT_COMPLEX + {"cmath", initcmath}, #endif {"parser", initparser}, {"mac", initmac}, -- 2.50.1