diff options
author | Anatol Belski <ab@php.net> | 2014-07-21 09:52:52 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-07-21 09:52:52 +0200 |
commit | f6d941e4b451a09c80e852a2f9d54e41591c36d2 (patch) | |
tree | 7b7dd81ce9cc5aab9a51b594ef90b9ad90a3d7e1 /main | |
parent | b131b03dc2ec4f3765e0d603b44f25c8029a3c2f (diff) | |
download | php-git-f6d941e4b451a09c80e852a2f9d54e41591c36d2.tar.gz |
force atoll macro usage on windows
Diffstat (limited to 'main')
-rw-r--r-- | main/rfc1867.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index c93472f5a1..806a292872 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -36,6 +36,7 @@ #if defined(PHP_WIN32) && !defined(HAVE_ATOLL) # define atoll(s) _atoi64(s) +# define HAVE_ATOLL 1 #endif #define DEBUG_FILE_UPLOAD ZEND_DEBUG |