Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4fbb6d9

Browse files
committed
Added cmath module
1 parent d390325 commit 4fbb6d9

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Mac/Modules/config.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3232

3333
extern void initarray();
3434
extern void initmath();
35+
#ifndef WITHOUT_COMPLEX
36+
extern void initcmath();
37+
#endif
3538
extern void initparser();
3639
extern void initmac();
3740
extern void MacOS_Init();
@@ -133,6 +136,9 @@ struct {
133136
#ifndef SYMANTEC__CFM68K__
134137
/* The math library seems mostly broken... */
135138
{"math", initmath},
139+
#endif
140+
#ifndef WITHOUT_COMPLEX
141+
{"cmath", initcmath},
136142
#endif
137143
{"parser", initparser},
138144
{"mac", initmac},

0 commit comments

Comments
 (0)