diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-12 22:08:39 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-12 22:08:39 (GMT) |
commit | 1566a17af583cbda271950572c82869199aeb1f0 (patch) | |
tree | e886fe2e0326cbef3852e3bdf0be7c82d5bdf0e4 /PC | |
parent | 3e9964368243cec7d917cddd3bc3d258a767cf34 (diff) | |
download | cpython-1566a17af583cbda271950572c82869199aeb1f0.zip cpython-1566a17af583cbda271950572c82869199aeb1f0.tar.gz cpython-1566a17af583cbda271950572c82869199aeb1f0.tar.bz2 |
Get hotshot closer to compiling on Windows.
Still broken: GETTIMEOFDAY. This macro obviously isn't being defined
on Windows, so there's logic errors here I'd rather Fred untangled.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index df9b89a..9e4da2a 100644 --- a/PC/config.c +++ b/PC/config.c @@ -44,6 +44,7 @@ extern void init_locale(void); extern void init_codecs(void); extern void initxreadlines(void); extern void init_weakref(void); +extern void init_hotshot(void); extern void initxxsubtype(void); /* XXX tim: what's the purpose of ADDMODULE MARKER? */ @@ -98,6 +99,7 @@ struct _inittab _PyImport_Inittab[] = { {"_codecs", init_codecs}, {"xreadlines", initxreadlines}, {"_weakref", init_weakref}, + {"_hotshot", init_hotshot}, {"xxsubtype", initxxsubtype}, |