2792727822
* configure.in: Call BFD_NEED_DECLARATION on strstr and sbrk. * acconfig.h (NEED_DECLARATION_STRSTR): New macro. (NEED_DECLARATION_SBRK): New macro. * configure, config.in: Rebuild. * sysdep.h (strstr): Declare if NEED_DECLARATION_STRSTR. * ldmain.c (sbrk): Declare if HAVE_SBRK and NEED_DECLARATION_SBRK.
14 lines
399 B
C
14 lines
399 B
C
|
|
/* Whether strstr must be declared even if <string.h> is included. */
|
|
#undef NEED_DECLARATION_STRSTR
|
|
|
|
/* Whether free must be declared even if <stdlib.h> is included. */
|
|
#undef NEED_DECLARATION_FREE
|
|
|
|
/* Whether sbrk must be declared even if <unistd.h> is included. */
|
|
#undef NEED_DECLARATION_SBRK
|
|
@TOP@
|
|
|
|
/* Do we need to use the b modifier when opening binary files? */
|
|
#undef USE_BINARY_FOPEN
|