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

Skip to content

Commit c1cd2ca

Browse files
committed
Added operator, errno and soundex modules.
1 parent e0e1f1a commit c1cd2ca

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Mac/Modules/config.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ extern void initsyslog();
7878
extern void initgestalt();
7979
extern void initmacfs();
8080
extern void initbinascii();
81+
extern void initsoundex();
82+
extern void initoperator();
83+
extern void initerrno();
8184
#ifdef THINK
8285
extern void initmacconsole();
8386
#endif
@@ -171,6 +174,9 @@ struct _inittab inittab[] = {
171174
{"gestalt", initgestalt},
172175
{"macfs", initmacfs},
173176
{"binascii", initbinascii},
177+
{"soundex", initsoundex},
178+
{"operator", initoperator},
179+
{"errno", initerrno},
174180
#ifdef THINK_C
175181
/* This is an interface to the Think runtime */
176182
{"macconsole", initmacconsole},
@@ -230,7 +236,7 @@ struct _inittab inittab[] = {
230236
#endif
231237
#ifdef USE_GDBM
232238
{"gdbm", initgdbm},
233-
#endif USE_GDBM
239+
#endif /* USE_GDBM */
234240

235241
/* -- ADDMODULE MARKER 2 -- */
236242

0 commit comments

Comments
 (0)