On Wednesday 11 September 2013 10:49:36 Kyle McMartin wrote:
> +#if defined(__GNUC__) && __GNUC__>=2
> +void OPENSSL_cpuid_setup(void) __attribute__((constructor));
> +#endif
> +void OPENSSL_cpuid_setup(void)

this can be made simpler:
        #if defined(__GNUC__) && __GNUC__>=2
        __attribute__((constructor))
        #endif
        void OPENSSL_cpuid_setup(void)
-mike

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to