diff options
author | Guido van Rossum <guido@python.org> | 1991-07-01 18:45:17 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-07-01 18:45:17 (GMT) |
commit | 49955ae3607fd822a963217ae53df49917bc83ad (patch) | |
tree | 7b6653cc77c2b968609d2d3ecca04443aa3ffe31 /Modules/config.c.in | |
parent | efc0bd02e5a661ede3737ff1d051973166425514 (diff) | |
download | cpython-49955ae3607fd822a963217ae53df49917bc83ad.zip cpython-49955ae3607fd822a963217ae53df49917bc83ad.tar.gz cpython-49955ae3607fd822a963217ae53df49917bc83ad.tar.bz2 |
Support socket module
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 97c3348..96e93c9 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -103,6 +103,9 @@ extern void initpanel(); #ifdef USE_STDWIN extern void initstdwin(); #endif +#ifdef USE_SOCKET +extern void initsocket(); +#endif struct { char *name; @@ -144,5 +147,9 @@ struct { {"stdwin", initstdwin}, #endif +#ifdef USE_SOCKET + {"socket", initsocket}, +#endif + {0, 0} /* Sentinel */ }; |