summaryrefslogtreecommitdiff
path: root/lib/make/config.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'lib/make/config.h.in')
-rw-r--r--lib/make/config.h.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/make/config.h.in b/lib/make/config.h.in
new file mode 100644
index 00000000..48eb0abc
--- /dev/null
+++ b/lib/make/config.h.in
@@ -0,0 +1,28 @@
+/* config.h.in. Generated automatically from configure.in by autoheader. */
+
+/* Define to empty if the keyword does not work. */
+#undef const
+
+/* Define if the `long double' type works. */
+#undef HAVE_LONG_DOUBLE
+
+/* Define as __inline if that's what the C compiler calls it. */
+#undef inline
+
+/* Define if your processor stores words with the most significant
+ byte first (like Motorola and SPARC, unlike Intel and VAX). */
+#undef WORDS_BIGENDIAN
+
+/* The number of bytes in a int. */
+#undef SIZEOF_INT
+
+/* The number of bytes in a short int. */
+#undef SIZEOF_SHORT_INT
+
+#if SIZEOF_INT==4
+#define Int int
+#elif SIZEOF_SHORT_INT==4
+#define Int short int
+#else
+#error "Unable to find a 4 byte integer type. "
+#endif