// SPDX-FileCopyrightText: 2022-2024, Alejandro Colomar // SPDX-License-Identifier: BSD-3-Clause #ifndef SHADOW_INCLUDE_LIB_CAST_H_ #define SHADOW_INCLUDE_LIB_CAST_H_ #include #include "must_be.h" #define const_cast(T, p) \ ({ \ static_assert(is_same_type(typeof(&*(p)), const T), ""); \ (T) (p); \ }) #endif // include guard