summaryrefslogtreecommitdiff
path: root/m4/mkstemp.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/mkstemp.m4')
-rw-r--r--m4/mkstemp.m440
1 files changed, 20 insertions, 20 deletions
diff --git a/m4/mkstemp.m4 b/m4/mkstemp.m4
index 4b036c927..6a7de94b6 100644
--- a/m4/mkstemp.m4
+++ b/m4/mkstemp.m4
@@ -17,26 +17,26 @@ AC_DEFUN([gl_FUNC_MKSTEMP],
[
mkdir conftest.mkstemp
( cd conftest.mkstemp
- AC_TRY_RUN([
-# include <stdlib.h>
- int main ()
- {
- int i;
- for (i = 0; i < 70; i++)
- {
- char template[] = "coXXXXXX.tmp";
- int fd = mkstemp (template);
- if (fd == -1)
- exit (1);
- close (fd);
- }
- exit (0);
- }
- ],
- gl_cv_func_mkstemp_limitations=no,
- gl_cv_func_mkstemp_limitations=yes,
- gl_cv_func_mkstemp_limitations=yes
- )
+ AC_TRY_RUN([
+# include <stdlib.h>
+ int main ()
+ {
+ int i;
+ for (i = 0; i < 70; i++)
+ {
+ char template[] = "coXXXXXX.tmp";
+ int fd = mkstemp (template);
+ if (fd == -1)
+ exit (1);
+ close (fd);
+ }
+ exit (0);
+ }
+ ],
+ gl_cv_func_mkstemp_limitations=no,
+ gl_cv_func_mkstemp_limitations=yes,
+ gl_cv_func_mkstemp_limitations=yes
+ )
)
]
)