cmake HAVE___BUILTIN_MUL_OVERFLOW examples

SWI-Prolog/swipl-devel cmake/Config.cmake :73

check_c_source_compiles(
    "#include <stdint.h>
     int64_t r1 = 1;
     int64_t r2 = 3;
     int64_t r3;
     int main() { __builtin_mul_overflow(r1,r2,&r3); }"
    HAVE___BUILTIN_MUL_OVERFLOW)