Go to the documentation of this file.
18#if __STDC_HOSTED__ && __has_include_next(<stdckdint.h>)
19#include_next <stdckdint.h>
24#define __STDC_VERSION_STDCKDINT_H__ 202311L
37#define ckd_add(R, A, B) __builtin_add_overflow((A), (B), (R))
38#define ckd_sub(R, A, B) __builtin_sub_overflow((A), (B), (R))
39#define ckd_mul(R, A, B) __builtin_mul_overflow((A), (B), (R))