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