diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-07-23 06:31:15 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-07-23 06:31:15 (GMT) |
commit | 62b1ab1b314653c09757c533883447eda437306f (patch) | |
tree | 0aaf9538469559756f9129c5da8b09abc4903c04 /Modules/mmapmodule.c | |
parent | 92825a9a525c268b9797b8be28dbd959b64a821d (diff) | |
download | cpython-62b1ab1b314653c09757c533883447eda437306f.zip cpython-62b1ab1b314653c09757c533883447eda437306f.tar.gz cpython-62b1ab1b314653c09757c533883447eda437306f.tar.bz2 |
Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link
command line for Windows builds. This should allow MSVC to import and
build the Python MSVC6 project files without error.
Diffstat (limited to 'Modules/mmapmodule.c')
-rw-r--r-- | Modules/mmapmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index eca67d3..2bb6edc 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1051,7 +1051,7 @@ static struct PyMethodDef mmap_functions[] = { {NULL, NULL} /* Sentinel */ }; -DL_EXPORT(void) +PyMODINIT_FUNC initmmap(void) { PyObject *dict, *module; |