1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef ASSERT_H 9 #define ASSERT_H 10 11 #include_next <assert.h> /* IWYU pragma: keep */ 12 13 #ifndef static_assert 14 # define static_assert _Static_assert 15 #endif 16 17 #endif /* ASSERT_H */ 18