Cyclone Scheme  0.28.0

◆ BIGNUM_CALL

#define BIGNUM_CALL (   x)
Value:
{ \
int __bn_mp_rv; \
if ((__bn_mp_rv = (x)) != MP_OKAY) { \
fprintf(stderr, "Error calling bignum function: %s\n", \
mp_error_to_string(__bn_mp_rv)); \
exit(1); \
} \
}

Helper for handling return value of a bignum function call