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