12345678910111213141516171819 |
- /*
- * Copyright (c) 2021 Nordic Semiconductor ASA
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <zephyr.h>
- /**
- * \brief This symbol is the entry point provided by the PSA API compliance
- * test libraries
- */
- extern void val_entry(void);
- void psa_test(void)
- {
- val_entry();
- }
|