summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1997-02-20 15:20:46 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1997-02-20 15:20:46 (GMT)
commitc1cd2ca999e1cc473806177e839c19cc90f69db6 (patch)
treeeb802c06555f5e368ca88320cad2247b5c4a2838 /Mac
parente0e1f1a25dfaae37d53740ac9b4994a914c82498 (diff)
downloadcpython-c1cd2ca999e1cc473806177e839c19cc90f69db6.zip
cpython-c1cd2ca999e1cc473806177e839c19cc90f69db6.tar.gz
cpython-c1cd2ca999e1cc473806177e839c19cc90f69db6.tar.bz2
Added operator, errno and soundex modules.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/config.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c
index 07b08ba..0dd39de 100644
--- a/Mac/Modules/config.c
+++ b/Mac/Modules/config.c
@@ -78,6 +78,9 @@ extern void initsyslog();
extern void initgestalt();
extern void initmacfs();
extern void initbinascii();
+extern void initsoundex();
+extern void initoperator();
+extern void initerrno();
#ifdef THINK
extern void initmacconsole();
#endif
@@ -171,6 +174,9 @@ struct _inittab inittab[] = {
{"gestalt", initgestalt},
{"macfs", initmacfs},
{"binascii", initbinascii},
+ {"soundex", initsoundex},
+ {"operator", initoperator},
+ {"errno", initerrno},
#ifdef THINK_C
/* This is an interface to the Think runtime */
{"macconsole", initmacconsole},
@@ -230,7 +236,7 @@ struct _inittab inittab[] = {
#endif
#ifdef USE_GDBM
{"gdbm", initgdbm},
-#endif USE_GDBM
+#endif /* USE_GDBM */
/* -- ADDMODULE MARKER 2 -- */