aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/aro/include/stdckdint.h
blob: 44d954cf93f03ef9615194f5c04ee9d36e833e35 (plain)
1
2
3
4
5
6
7
8
9
/* <stdckdint.h> for the Aro C compiler */

#pragma once

#define __STDC_VERSION_STDCKDINT_H__ 202311L

#define ckd_add(result, a, b) __builtin_add_overflow(a, b, result)
#define ckd_sub(result, a, b) __builtin_sub_overflow(a, b, result)
#define ckd_mul(result, a, b) __builtin_mul_overflow(a, b, result)