/* * Copyright (c) 2020 Stephanos Ioannidis * * SPDX-License-Identifier: Apache-2.0 */ #include #include extern void test_complexmath_q15(void); extern void test_complexmath_q31(void); extern void test_complexmath_f32(void); void test_main(void) { test_complexmath_q15(); test_complexmath_q31(); test_complexmath_f32(); }