Commit 6c0d5a69 authored by Guido van Rossum's avatar Guido van Rossum

Support socket module

parent a1e5ba22
......@@ -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 */
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment