1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2014, STMicroelectronics International N.V. 4 */ 5 6 #ifndef TOMCRYPT_MP_H_ 7 #define TOMCRYPT_MP_H_ 8 9 #if defined(_CFG_CORE_LTC_ACIPHER) 10 void init_mp_tomcrypt(void); 11 #else init_mp_tomcrypt(void)12static inline void init_mp_tomcrypt(void) { } 13 #endif 14 15 #endif /* TOMCRYPT_MP_H_ */ 16