- Fixed bug #54934 (Unresolved symbol strtoull in HP-UX 11.11)

This commit is contained in:
Felipe Pena 2011-05-27 23:31:30 +00:00
parent 8267eaf1bf
commit 490b75d170

View File

@ -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