fef1696ffc
* configure.in: Add stdlib.h to AC_CHECK_HEADERS. Call BFD_NEED_DECLARATION on malloc, realloc, and free. * acconfig.h: Add NEED_DECLARATION_MALLOC, NEED_DECLARATION_REALLOC, and NEED_DECLARATION_FREE. * configure, config.in: Rebuild. * defs.h: Include <stddef.h> and <stdlib.h> based on HAVE_*_H rather than __STDC__. Only declare malloc, realloc, and free if NEED_DECLARATION_* is defined.
29 lines
782 B
C
29 lines
782 B
C
|
|
/* Whether malloc must be declared even if <stdlib.h> is included. */
|
|
#undef NEED_DECLARATION_MALLOC
|
|
|
|
/* Whether realloc must be declared even if <stdlib.h> is included. */
|
|
#undef NEED_DECLARATION_REALLOC
|
|
|
|
/* Whether free must be declared even if <stdlib.h> is included. */
|
|
#undef NEED_DECLARATION_FREE
|
|
@TOP@
|
|
|
|
/* Define if fpregset_t type is available. */
|
|
#undef HAVE_FPREGSET_T
|
|
|
|
/* Define if gregset_t type is available. */
|
|
#undef HAVE_GREGSET_T
|
|
|
|
/* Define if the `long long' type works. */
|
|
#undef CC_HAS_LONG_LONG
|
|
|
|
/* Define if the "ll" format works to print long long ints. */
|
|
#undef PRINTF_HAS_LONG_LONG
|
|
|
|
/* Define if the "%Lg" format works to print long doubles. */
|
|
#undef PRINTF_HAS_LONG_DOUBLE
|
|
|
|
/* Define if using Solaris thread debugging. */
|
|
#undef HAVE_THREAD_DB_LIB
|