1 /*
2  * Copyright (c) 2021 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr.h>
8 
9 /**
10  * \brief This symbol is the entry point provided by the PSA API compliance
11  *        test libraries
12  */
13 extern void val_entry(void);
14 
15 
psa_test(void)16 void psa_test(void)
17 {
18 	val_entry();
19 }
20