mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
by removing the cast to _Bool. The _Bool type is not defined for C++,
and the specification from the gcc info doc states that the return
type of the __builtin_{add,sub,mul}_overflow() is bool already.
This is done instead of including stdbool.h to avoid namespace
pollution, since defining bool from stdckdint.h simingly is not
sanctioned by ISO/IEC 9899:2024.
PR: 290299
Reviewed by: des
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D53149
40 lines
1 KiB
C
40 lines
1 KiB
C
/*-
|
|
* Copyright (c) 2023 Dag-Erling Smørgrav
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#ifndef __STDC_VERSION_STDCKDINT_H__
|
|
#define __STDC_VERSION_STDCKDINT_H__ 202311L
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 2023
|
|
|
|
#if __GNUC_PREREQ__(5, 1) || __has_builtin(__builtin_add_overflow)
|
|
#define ckd_add(result, a, b) \
|
|
__builtin_add_overflow((a), (b), (result))
|
|
#else
|
|
#define ckd_add(result, a, b) \
|
|
_Static_assert(0, "checked addition not supported")
|
|
#endif
|
|
|
|
#if __GNUC_PREREQ__(5, 1) || __has_builtin(__builtin_sub_overflow)
|
|
#define ckd_sub(result, a, b) \
|
|
__builtin_sub_overflow((a), (b), (result))
|
|
#else
|
|
#define ckd_sub(result, a, b) \
|
|
_Static_assert(0, "checked subtraction not supported")
|
|
#endif
|
|
|
|
#if __GNUC_PREREQ__(5, 1) || __has_builtin(__builtin_mul_overflow)
|
|
#define ckd_mul(result, a, b) \
|
|
__builtin_mul_overflow((a), (b), (result))
|
|
#else
|
|
#define ckd_mul(result, a, b) \
|
|
_Static_assert(0, "checked multiplication not supported")
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|