+2018-12-16 Assaf Gordon <assafgordon@gmail.com>
+
+ random: Fix build error on native Windows (regression from 2018-06-21).
+ * lib/random.c (__srandom, __initstate, __setstate, __random,
+ __srandom_r, __initstate_r, __setstate_r, __random_r) [!_LIBC]: Redirect
+ to the symbols without '__' prefix.
+
2018-12-16 Bruno Haible <bruno@clisp.org>
obstack, libc-config: Support HP-UX cc in C99 mode.
* doc/gnulib-tool.texi (Finding POSIX substitutes): New section.
(Which modules?): Reference it.
-2018-08-01 Assaf Gordon <assafgordon@gmail.com>
+2018-08-01 Assaf Gordon <assafgordon@gmail.com>
dfa: fix memory leak
* lib/dfa.c (dfafree): Add missing free() on dfa->superset.
#ifndef _LIBC
# include <libc-config.h>
+# define __srandom srandom
+# define __initstate initstate
+# define __setstate setstate
+# define __random random
+# define __srandom_r srandom_r
+# define __initstate_r initstate_r
+# define __setstate_r setstate_r
+# define __random_r random_r
#endif
/* Specification. */