summaryrefslogtreecommitdiff
path: root/m4/ax_compile_check_sizeof.m4
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-12-23 20:31:32 +0100
committerPeter Simons <simons@cryp.to>2009-12-23 20:31:32 +0100
commitb12941f7aa00fb681a7b56260812db4ff0ac56ce (patch)
tree500591102f70be75e5ca15ee016d77a33ffe55c9 /m4/ax_compile_check_sizeof.m4
parentdb3d86cee936204ba5d5fd87cbef8280e283eb5a (diff)
downloadautoconf-archive-b12941f7aa00fb681a7b56260812db4ff0ac56ce.tar.gz
Consistently indent quoted paragraphs with two blanks.
Diffstat (limited to 'm4/ax_compile_check_sizeof.m4')
-rw-r--r--m4/ax_compile_check_sizeof.m450
1 files changed, 25 insertions, 25 deletions
diff --git a/m4/ax_compile_check_sizeof.m4 b/m4/ax_compile_check_sizeof.m4
index 8961076..1380199 100644
--- a/m4/ax_compile_check_sizeof.m4
+++ b/m4/ax_compile_check_sizeof.m4
@@ -18,11 +18,11 @@
# The trick is that C will not allow duplicate case labels. While this is
# valid C code:
#
-# switch (0) case 0: case 1:;
+# switch (0) case 0: case 1:;
#
# The following is not:
#
-# switch (0) case 0: case 0:;
+# switch (0) case 0: case 0:;
#
# Thus, the AC_TRY_COMPILE will fail if the currently tried size does not
# match.
@@ -30,29 +30,29 @@
# Here is an example skeleton configure.in script, demonstrating the
# macro's usage:
#
-# AC_PROG_CC
-# AC_CHECK_HEADERS(stddef.h unistd.h)
-# AC_TYPE_SIZE_T
-# AC_CHECK_TYPE(ssize_t, int)
-#
-# headers='#ifdef HAVE_STDDEF_H
-# #include <stddef.h>
-# #endif
-# #ifdef HAVE_UNISTD_H
-# #include <unistd.h>
-# #endif
-# '
-#
-# AX_COMPILE_CHECK_SIZEOF(char)
-# AX_COMPILE_CHECK_SIZEOF(short)
-# AX_COMPILE_CHECK_SIZEOF(int)
-# AX_COMPILE_CHECK_SIZEOF(long)
-# AX_COMPILE_CHECK_SIZEOF(unsigned char *)
-# AX_COMPILE_CHECK_SIZEOF(void *)
-# AX_COMPILE_CHECK_SIZEOF(size_t, $headers)
-# AX_COMPILE_CHECK_SIZEOF(ssize_t, $headers)
-# AX_COMPILE_CHECK_SIZEOF(ptrdiff_t, $headers)
-# AX_COMPILE_CHECK_SIZEOF(off_t, $headers)
+# AC_PROG_CC
+# AC_CHECK_HEADERS(stddef.h unistd.h)
+# AC_TYPE_SIZE_T
+# AC_CHECK_TYPE(ssize_t, int)
+#
+# headers='#ifdef HAVE_STDDEF_H
+# #include <stddef.h>
+# #endif
+# #ifdef HAVE_UNISTD_H
+# #include <unistd.h>
+# #endif
+# '
+#
+# AX_COMPILE_CHECK_SIZEOF(char)
+# AX_COMPILE_CHECK_SIZEOF(short)
+# AX_COMPILE_CHECK_SIZEOF(int)
+# AX_COMPILE_CHECK_SIZEOF(long)
+# AX_COMPILE_CHECK_SIZEOF(unsigned char *)
+# AX_COMPILE_CHECK_SIZEOF(void *)
+# AX_COMPILE_CHECK_SIZEOF(size_t, $headers)
+# AX_COMPILE_CHECK_SIZEOF(ssize_t, $headers)
+# AX_COMPILE_CHECK_SIZEOF(ptrdiff_t, $headers)
+# AX_COMPILE_CHECK_SIZEOF(off_t, $headers)
#
# LICENSE
#