diff options
author | Guido van Rossum <guido@python.org> | 1996-08-22 00:43:42 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-22 00:43:42 (GMT) |
commit | bf57ed5f9575b2d4499ac089c4e2e48500c6ace4 (patch) | |
tree | 45e8cb628e8e66a18d8f6cdf099368a3200e7a5b /PC/config.c | |
parent | 331a8973acb76ffa849f310d46bad11abc825056 (diff) | |
download | cpython-bf57ed5f9575b2d4499ac089c4e2e48500c6ace4.zip cpython-bf57ed5f9575b2d4499ac089c4e2e48500c6ace4.tar.gz cpython-bf57ed5f9575b2d4499ac089c4e2e48500c6ace4.tar.bz2 |
Added thread module (it was already in the project!)
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index b128aaa..5e37a35 100644 --- a/PC/config.c +++ b/PC/config.c @@ -50,6 +50,7 @@ extern void initsoundex(); extern void initstrop(); extern void initstruct(); extern void inittime(); +extern void initthread(); /* -- ADDMODULE MARKER 1 -- */ @@ -83,6 +84,9 @@ struct _inittab inittab[] = { {"strop", initstrop}, {"struct", initstruct}, {"time", inittime}, +#ifdef WITH_THREAD + {"thread", initthread}, +#endif /* -- ADDMODULE MARKER 2 -- */ |