Sync usage with man page.
[netbsd-mini2440.git] / crypto / dist / heimdal / cf / broken-realloc.m4
blob5c99f0db6e004f65bc982f841c8d45c2d4566e7c
1 dnl
2 dnl $Heimdal: broken-realloc.m4 15435 2005-06-16 19:45:52Z lha $
3 dnl $NetBSD$
4 dnl
5 dnl Test for realloc that doesn't handle NULL as first parameter
6 dnl
7 AC_DEFUN([rk_BROKEN_REALLOC], [
8 AC_CACHE_CHECK(if realloc if broken, ac_cv_func_realloc_broken, [
9 ac_cv_func_realloc_broken=no
10 AC_RUN_IFELSE([AC_LANG_SOURCE([[
11 #include <stddef.h>
12 #include <stdlib.h>
14 int main(int argc, char **argv)
16         return realloc(NULL, 17) == NULL;
18 ]])],[:], [ac_cv_func_realloc_broken=yes],[:])
20 if test "$ac_cv_func_realloc_broken" = yes ; then
21         AC_DEFINE(BROKEN_REALLOC, 1, [Define if realloc(NULL) doesn't work.])
23 AH_BOTTOM([#ifdef BROKEN_REALLOC
24 #define realloc(X, Y) rk_realloc((X), (Y))
25 #endif])