diff options
author | Ralf Lang <lang@b1-systems.de> | 2013-07-23 07:39:36 +0200 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2013-08-06 22:51:58 +0200 |
commit | 8a7ea474a4f8d8e61e0ed9d82cf764eb6b13f580 (patch) | |
tree | 92189c482d8773067fedbd24c9fd3fb29822c3ee | |
parent | 679fa1fc6854dce7d5d0ff7def65a5bbdbb18094 (diff) | |
download | php-git-8a7ea474a4f8d8e61e0ed9d82cf764eb6b13f580.tar.gz |
more precise condition
-rw-r--r-- | main/rfc1867.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index 8460929108..3c160702ae 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -34,7 +34,7 @@ #include "rfc1867.h" #include "ext/standard/php_string.h" -#if defined(_MSC_VER) +#if defined(PHP_WIN32) && !defined(HAVE_ATOLL) # define atoll(s) _atoi64(s) #endif |