1 // © 2022 Qualcomm Innovation Center, Inc. All rights reserved. 2 // 3 // SPDX-License-Identifier: BSD-3-Clause 4 5 #include <assert.h> 6 #include <hyptypes.h> 7 8 // Gunyah compiler assumption sanity checks. 9 #if ARCH_IS_64BIT 10 static_assert(SIZE_MAX == UINT64_MAX, "SIZE_MAX smaller than machine width"); 11 #else 12 #error unsupported 13 #endif 14