summaryrefslogtreecommitdiff
path: root/m4/ax_define_integer_bits.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_define_integer_bits.m4
parentdb3d86cee936204ba5d5fd87cbef8280e283eb5a (diff)
downloadautoconf-archive-b12941f7aa00fb681a7b56260812db4ff0ac56ce.tar.gz
Consistently indent quoted paragraphs with two blanks.
Diffstat (limited to 'm4/ax_define_integer_bits.m4')
-rw-r--r--m4/ax_define_integer_bits.m424
1 files changed, 12 insertions, 12 deletions
diff --git a/m4/ax_define_integer_bits.m4 b/m4/ax_define_integer_bits.m4
index 02e9c42..5d53c05 100644
--- a/m4/ax_define_integer_bits.m4
+++ b/m4/ax_define_integer_bits.m4
@@ -17,23 +17,23 @@
# For example, the following ensures that uint64_t is defined as a 64-bit
# datatype:
#
-# AX_DEFINE_INTEGER_BITS(uint64_t, unsigned long long, unsigned __int64, long)
-# if test "$uint64_t" = no; then
-# AC_MSG_ERROR([unable to continue without a 64-bit datatype])
-# fi
+# AX_DEFINE_INTEGER_BITS(uint64_t, unsigned long long, unsigned __int64, long)
+# if test "$uint64_t" = no; then
+# AC_MSG_ERROR([unable to continue without a 64-bit datatype])
+# fi
#
# You should then put the following in your C code to ensure that all
# datatypes defined by AX_DEFINE_INTEGER_BITS are visible to your program:
#
-# #include "config.h"
+# #include "config.h"
#
-# #if HAVE_INTTYPES_H
-# # include <inttypes.h>
-# #else
-# # if HAVE_STDINT_H
-# # include <stdint.h>
-# # endif
-# #endif
+# #if HAVE_INTTYPES_H
+# # include <inttypes.h>
+# #else
+# # if HAVE_STDINT_H
+# # include <stdint.h>
+# # endif
+# #endif
#
# LICENSE
#