xref: /optee_os/core/lib/libtomcrypt/include/tomcrypt_mp.h (revision c2e4eb43b7b7211345cd38ceceac97773bd78d2c)
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
12 static inline void init_mp_tomcrypt(void) { }
13 #endif
14 
15 #endif /* TOMCRYPT_MP_H_ */
16