From d2477c2e0f9ba641727ae09c19ba8f8d7fcb3796 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Mon, 1 Apr 2013 14:47:46 +0900 Subject: [PATCH 1/1] (SIZEOF_INT): New macro. (SIZEOF_LONG): New macro. (SIZEOF_LONG_LONG): New macro. (SIZEOF_VOID_P): New macro. (BITS_PER_CHAR): New macro. --- config.h.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.h.in b/config.h.in index 7ccebe0..353b7a9 100644 --- a/config.h.in +++ b/config.h.in @@ -47,3 +47,12 @@ /* 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 -- 1.7.10.4