- Fixes the following MinGW-w64 GCC compiler warning:
rrd_create.c:287:14: warning: declaration of 'strndup' shadows a
built-in function [-Wshadow] static char *strndup(
- MinGW-w64: strndup is not detected by configure, therefore
HAVE_STRNDUP is not defined.
Use strndup_() here instead of strndup() to avoid any collisions.
}
#ifndef HAVE_STRNDUP
+/* Avoid MinGW-w64 warning: declaration of 'strndup' shadows a built-in function [-Wshadow] */
+#define strndup strndup_
/* Implement the strndup function.
Copyright (C) 2005 Free Software Foundation, Inc.
Written by Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.