summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-12-21 21:43:36 +0000
committerJim Meyering <jim@meyering.net>2004-12-21 21:43:36 +0000
commit71f15c4c41de15a553440f13079a95cdb5de1691 (patch)
tree67964a6b0af537538fdf5ad3292a4b461d2ceee0
parente27c569715c1ef3e3dd8509732c13cab91233e66 (diff)
downloadcoreutils-71f15c4c41de15a553440f13079a95cdb5de1691.tar.xz
adjust indentation
-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
+ )
)
]
)