diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-11 18:29:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-11 18:29:21 (GMT) |
commit | 2c3b2302adb1bb00b6050afc30eacbc023379b93 (patch) | |
tree | c41e4702224848fd137a0e6043949d1fa88b3b77 /pyconfig.h.in | |
parent | 60dd7dc23c37bbb1c6ecc83a866f1a379afce443 (diff) | |
download | cpython-2c3b2302adb1bb00b6050afc30eacbc023379b93.zip cpython-2c3b2302adb1bb00b6050afc30eacbc023379b93.tar.gz cpython-2c3b2302adb1bb00b6050afc30eacbc023379b93.tar.bz2 |
Issue #13134: optimize finding single-character strings using memchr
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 3a38398..dbaa5c4 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -515,6 +515,9 @@ /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H +/* Define to 1 if you have the `memrchr' function. */ +#undef HAVE_MEMRCHR + /* Define to 1 if you have the `mkdirat' function. */ #undef HAVE_MKDIRAT |