mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
- Fixed bug #54934 (Unresolved symbol strtoull in HP-UX 11.11)
This commit is contained in:
parent
8267eaf1bf
commit
490b75d170
@ -41,6 +41,14 @@ FILE_RCSID("@(#)$File: apprentice.c,v 1.151 2009/03/18 15:19:23 christos Exp $")
|
||||
#include "patchlevel.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#if defined(__hpux) && !defined(HAVE_STRTOULL)
|
||||
#if SIZEOF_LONG == 8
|
||||
# define strtoull strtoul
|
||||
#else
|
||||
# define strtoull __strtoull
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef PHP_WIN32
|
||||
#include "win32/unistd.h"
|
||||
#if _MSC_VER <= 1300
|
||||
|
Loading…
Reference in New Issue
Block a user