* lib/error.c (strerror_r): Turn K&R C prototype to an ANSI C prototype.
+2017-04-05 Tim Rühsen <tim.ruehsen@gmx.de>
+
+ error: Avoid "function declaration isn't a prototype" warning.
+ * lib/error.c (strerror_r): Turn K&R C prototype to an ANSI C prototype.
+
2017-04-21 Bruno Haible <bruno@clisp.org>
vasnprintf: Fix for MSVC 14.
"this configure-time declaration test was not run"
# endif
# if STRERROR_R_CHAR_P
-char *strerror_r ();
+char *strerror_r (int errnum, char *buf, size_t buflen);
# else
-int strerror_r ();
+int strerror_r (int errnum, char *buf, size_t buflen);
# endif
# endif