diff options
author | Joseph Shen <joseph.smeng@gmail.com> | 2017-03-03 21:44:51 +0800 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-03 15:44:51 +0200 |
commit | 677ab995cede784f5dafa64d54c92e98c8b81dd7 (patch) | |
tree | d3033e0e3dac46cc1d83107e393bc48a588d6798 | |
parent | 460b1cc152630079adef8a9923089de734cbb26a (diff) | |
download | cpython-git-677ab995cede784f5dafa64d54c92e98c8b81dd7.tar.gz |
Fixed a typo in the comment in Include/pyport.h (#425)
#ifdef HAVE_DECLSPEC_DLL / #endif mismatch
-rw-r--r-- | Include/pyport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 03c664f397..684ef662af 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -671,7 +671,7 @@ extern pid_t forkpty(int *, char *, struct termios *, struct winsize *); # define PyMODINIT_FUNC __declspec(dllexport) PyObject* # endif /* __cplusplus */ # endif /* Py_BUILD_CORE */ -# endif /* HAVE_DECLSPEC */ +# endif /* HAVE_DECLSPEC_DLL */ #endif /* Py_ENABLE_SHARED */ /* If no external linkage macros defined by now, create defaults */ |