xref: /optee_os/core/lib/libtomcrypt/include/tomcrypt_mp.h (revision 32b3180828fa15a49ccc86ecb4be9d274c140c89)
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