1 /*
2  * Copyright (c) 2022 Qualcomm Innovation Center, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef MBEDTLS_INIT_H
8 #define MBEDTLS_INIT_H
9 
10 /* This should be called by platforms that do not wish to
11  * have mbedtls initialised during kernel startup
12  */
13 int mbedtls_init(void);
14 
15 #endif /* MBEDTLS_INIT_H */
16