Hi Paul, On 2014-12-12 you wrote:
> +/* Some platforms lack max_align_t. */
> +#if !@HAVE_MAX_ALIGN_T@
> +typedef union
> +{
> + char *__p;
> + double __d;
> + long double __ld;
> + long int __i;
> +} max_align_t;
> +#endif
How about adding a member
#if @HAVE_LONG_LONG_INT@
long long int __li;
#endif
to this union? Not that it would make a difference on the existing
architectures, but it may be more future-proof.
Bruno
