+2006-11-01 Eric Blake <ebb9@byu.net>
+
+ * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
+
2006-10-29 Bruno Haible <bruno@clisp.org>
Make it compile in C++ mode.
-#serial 15
+#serial 16
# Copyright (C) 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
large = 2147483647;
for (i = 0; i < 70; i++)
{
- char template[] = "conftest.mkstemp/coXXXXXX";
+ char templ[] = "conftest.mkstemp/coXXXXXX";
int (*mkstemp_function) (char *) = mkstemp;
- int fd = mkstemp_function (template);
+ int fd = mkstemp_function (templ);
if (fd < 0 || lseek (fd, large, SEEK_SET) != large)
return 1;
close (fd);