(SIZEOF_INT): New macro.
authorMORIOKA Tomohiko <tomo.git@chise.org>
Mon, 1 Apr 2013 05:47:46 +0000 (14:47 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Mon, 1 Apr 2013 05:47:46 +0000 (14:47 +0900)
(SIZEOF_LONG): New macro.
(SIZEOF_LONG_LONG): New macro.
(SIZEOF_VOID_P): New macro.
(BITS_PER_CHAR): New macro.

config.h.in

index 7ccebe0..353b7a9 100644 (file)
 /* Define as `__inline' if that's what the C compiler calls it, or to nothing
    if it is not supported. */
 #undef inline
+
+#undef SIZEOF_INT
+#undef SIZEOF_LONG
+#undef SIZEOF_LONG_LONG
+#undef SIZEOF_VOID_P
+
+#ifndef BITS_PER_CHAR
+#define BITS_PER_CHAR 8
+#endif