mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
10 lines
305 B
C
Vendored
10 lines
305 B
C
Vendored
/* <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)
|