1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Disable the use of strchrnul() unless specifically enabled by compile-time

options.

FossilOrigin-Name: e580470db77d6da970c755102790e603fb26b3c6
This commit is contained in:
drh
2014-10-22 20:07:19 +00:00
parent d7d7147022
commit b7288e28e4
3 changed files with 8 additions and 12 deletions

View File

@@ -21,11 +21,7 @@
** the glibc version so the glibc version is definitely preferred.
*/
#if !defined(HAVE_STRCHRNUL)
# if defined(linux)
# define HAVE_STRCHRNUL 1
# else
# define HAVE_STRCHRNUL 0
# endif
# define HAVE_STRCHRNUL 0
#endif