.
[gnulib.git] / m4 / realloc.m4
1 #serial 1
2
3 dnl From Jim Meyering.
4 dnl Determine whether realloc accepts 0 as its first argument.
5 dnl If it doesn't, arrange to use the replacement function.
6 dnl
7 dnl If you use this macro in a package, you should
8 dnl add the following two lines to acconfig.h:
9 dnl  /* Define to rpl_realloc if the replacement function should be used.  */
10 dnl  #undef realloc
11 dnl
12
13 AC_DEFUN(jm_FUNC_REALLOC,
14 [
15  AC_CACHE_CHECK([for working realloc], jm_cv_func_working_realloc,
16   [AC_TRY_RUN([
17     char *realloc ();
18     int
19     main ()
20     {
21       exit (realloc (0, 1) ? 0 : 1);
22     }
23           ],
24          jm_cv_func_working_realloc=yes,
25          jm_cv_func_working_realloc=no,
26          dnl When crosscompiling, assume realloc is broken.
27          jm_cv_func_working_realloc=no)
28   ])
29   if test $jm_cv_func_working_realloc = no; then
30     LIBOBJS="$LIBOBJS realloc.o"
31     AC_DEFINE_UNQUOTED(realloc, rpl_realloc)
32   fi
33 ])