mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Check for HAVE_LONG_LONG in STRTOL macro
This commit is contained in:
parent
5fb7ea2294
commit
ff073b8cd5
1 changed files with 1 additions and 1 deletions
|
|
@ -1791,7 +1791,7 @@ numericStringNormalize(
|
|||
* Integer conversion macros that will use the largest available
|
||||
* type.
|
||||
*/
|
||||
#if defined(HAVE_STRTOLL) && defined(LLONG_MAX) && defined(LLONG_MIN)
|
||||
#if defined(HAVE_STRTOLL) && defined(LLONG_MAX) && defined(LLONG_MIN) && defined(HAVE_LONG_LONG)
|
||||
# define SLAP_STRTOL(n,e,b) strtoll(n,e,b)
|
||||
# define SLAP_LONG_MAX LLONG_MAX
|
||||
# define SLAP_LONG_MIN LLONG_MIN
|
||||
|
|
|
|||
Loading…
Reference in a new issue