diff options
Diffstat (limited to 'config_h.SH')
-rw-r--r-- | config_h.SH | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/config_h.SH b/config_h.SH index 7504ca5f88..7e0f25af9d 100644 --- a/config_h.SH +++ b/config_h.SH @@ -1000,21 +1000,13 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- /* HAS_QUAD: * This symbol, if defined, tells that there's a 64-bit integer type, - * Quad_t. - */ -/* Quad_t: - * This symbol holds the type used for 64-bit integers. - * It can be int, long, long long, int64_t etc... - */ -/* Uquad_t: - * This symbol holds the type used for unsigned 64-bit integers. - * It can be unsigned int, unsigned long, unsigned long long, - * uint64_t etc... + * Quad_t, and its unsigned counterpar, Uquad_t. QUADKIND will be one + * of QUAD_IS_INT, QUAD_IS_LONG, QUAD_IS_LONG_LONG, or QUAD_IS_INT64_T. */ #$d_quad HAS_QUAD /**/ -#$d_quad Quad_t $quadtype /**/ -#$d_quad Uquad_t $uquadtype /**/ #ifdef HAS_QUAD +# define Quad_t $quadtype /**/ +# define Uquad_t $uquadtype /**/ # define QUADKIND $quadkind /**/ # define QUAD_IS_INT 1 # define QUAD_IS_LONG 2 |