4 dnl Determine whether realloc works when both arguments are 0.
5 dnl If it doesn't, arrange to use the replacement function.
8 AC_DEFUN([jm_FUNC_REALLOC],
10 dnl xmalloc.c requires that this symbol be defined so it doesn't
11 dnl mistakenly use a broken realloc -- as it might if this test were omitted.
12 AC_DEFINE(HAVE_DONE_WORKING_REALLOC_CHECK, 1,
13 [Define if the realloc check has been performed. ])
15 AC_CACHE_CHECK([whether realloc(0,0) returns a non-NULL pointer],
16 jm_cv_func_working_realloc,
22 exit (realloc (0, 0) ? 0 : 1);
25 jm_cv_func_working_realloc=yes,
26 jm_cv_func_working_realloc=no,
27 dnl When crosscompiling, assume realloc(0,0) returns NULL.
28 jm_cv_func_working_realloc=no)
30 if test $jm_cv_func_working_realloc = no; then
32 AC_DEFINE(realloc, rpl_realloc,
33 [Define to rpl_realloc if the replacement function should be used.])