1 /*
2  * Copyright (c) 2020 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/types.h>
8 #include <zephyr/ztest.h>
9 #include <stdlib.h>
10 
bt_ctlr_assert_handle(char * file,uint32_t line)11 void bt_ctlr_assert_handle(char *file, uint32_t line)
12 {
13 	printf("Assertion failed in %s:%d\n", file, line);
14 	exit(-1);
15 }
16