diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1992-09-24 10:37:39 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1992-09-24 10:37:39 (GMT) |
commit | d53a4f3d14e6ea022ac2295f9636759bb0120cec (patch) | |
tree | 62447b6d2d82d6467b61f26a043ba24d8135e2f4 /Modules/config.c.in | |
parent | 2b65c03603d8685b503af70074de7da0193dc074 (diff) | |
download | cpython-d53a4f3d14e6ea022ac2295f9636759bb0120cec.zip cpython-d53a4f3d14e6ea022ac2295f9636759bb0120cec.tar.gz cpython-d53a4f3d14e6ea022ac2295f9636759bb0120cec.tar.bz2 |
New built-in module "cl" (Compression Library). Only for Irix 4.0.5
and higher. Made a few improvements to previous version.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index ef1cb58..6254a65 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -214,6 +214,9 @@ extern void initthread(); #ifdef USE_SV extern void initsv(); #endif +#ifdef USE_CL +extern void initcl(); +#endif #ifdef USE_TIME extern void inittime(); #endif @@ -335,6 +338,10 @@ struct { {"sv", initsv}, #endif +#ifdef USE_CL + {"cl", initcl}, +#endif + #ifdef USE_THREAD {"thread", initthread}, #endif |