diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-09-24 19:08:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-24 19:08:40 (GMT) |
commit | b1d1c422ccb9a1711c2d90660373edce9204adcb (patch) | |
tree | 444133c0b4497dc76f67c074396d000111d90066 /pyconfig.h.in | |
parent | 5b9299d8c72aeadccadd77e4b8132094ba9a1f96 (diff) | |
download | cpython-b1d1c422ccb9a1711c2d90660373edce9204adcb.zip cpython-b1d1c422ccb9a1711c2d90660373edce9204adcb.tar.gz cpython-b1d1c422ccb9a1711c2d90660373edce9204adcb.tar.bz2 |
remove configure check for memmove (#3716)
Python requires C implementations provide memmove, so we shouldn't need to check for it. The only place using this configure check was expat, where we can simply always define HAVE_MEMMOVE.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 4fc5a3f..d4feabe 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -601,9 +601,6 @@ /* Define to 1 if you have the `mbrtowc' function. */ #undef HAVE_MBRTOWC -/* Define to 1 if you have the `memmove' function. */ -#undef HAVE_MEMMOVE - /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H |