re PR libgomp/36469 (bootstrap broken on HPUX PA)
PR libgomp/36469 * configure.ac: Add AC_CHECK_FUNCS (strtoull). * configure: Regenerated. * config.h.in: Regenerated. * env.c (strtoull): Define to strtoul if HAVE_STRTOULL is not defined. From-SVN: r136650
This commit is contained in:
parent
a1968bf9f3
commit
976e44e324
5 changed files with 18 additions and 2 deletions
|
@ -47,6 +47,9 @@
|
|||
#include <limits.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifndef HAVE_STRTOULL
|
||||
# define strtoull(ptr, eptr, base) strtoul (ptr, eptr, base)
|
||||
#endif
|
||||
|
||||
struct gomp_task_icv gomp_global_icv = {
|
||||
.nthreads_var = 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue