1 /* SPDX-License-Identifier: BSD-3-Clause 2 * 3 * Copyright(c) 2021 Intel Corporation. All rights reserved. 4 * 5 * Author: Shriram Shastry <malladi.sastry@linux.intel.com> 6 * 7 */ 8 9 #ifndef __SOF_MATH__SQRTLOOKUP__H 10 #define __SOF_MATH__SQRTLOOKUP__H 11 12 #include <stdint.h> 13 14 uint16_t sqrt_int16(uint16_t u); 15 #endif 16