From: MORIOKA Tomohiko Date: Mon, 1 Apr 2013 05:47:46 +0000 (+0900) Subject: (SIZEOF_INT): New macro. X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fconcord.git;a=commitdiff_plain;h=d2477c2e0f9ba641727ae09c19ba8f8d7fcb3796 (SIZEOF_INT): New macro. (SIZEOF_LONG): New macro. (SIZEOF_LONG_LONG): New macro. (SIZEOF_VOID_P): New macro. (BITS_PER_CHAR): New macro. --- 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