realloc: more improvements for realloc (p, 0)
[gnulib.git] / m4 / wcsdup.m4
blobc165a3d93c58cae8843d1660750e1b2731129594
1 # wcsdup.m4
2 # serial 4
3 dnl Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7 dnl This file is offered as-is, without any warranty.
9 AC_DEFUN([gl_FUNC_WCSDUP],
11   AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
12   AC_CACHE_CHECK([for wcsdup],
13     [gl_cv_func_wcsdup],
14     [AC_LINK_IFELSE(
15        [AC_LANG_PROGRAM(
16           [[#include <wchar.h>
17           ]GL_MDA_DEFINES],
18           [[return wcsdup (L"hello") != NULL;]])
19        ],
20        [gl_cv_func_wcsdup=yes],
21        [gl_cv_func_wcsdup=no])
22     ])
23   if test $gl_cv_func_wcsdup = no; then
24     HAVE_WCSDUP=0
25   fi