1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2019, Linaro Limited
4  */
5 
6 #ifndef _OS_TEST_LIB_DL_H_
7 #define _OS_TEST_LIB_DL_H_
8 
9 #include <tee_api_types.h>
10 
11 int os_test_shlib_dl_add(int a, int b);
12 void os_test_shlib_dl_panic(void);
13 TEE_Result os_test_shlib_dl_cxx_ctor(void);
14 
15 #endif /* _OS_TEST_LIB_DL_H_ */
16