1 /* Copyright (c) 2023 Nordic Semiconductor ASA
2  * SPDX-License-Identifier: Apache-2.0
3  */
4 
5 extern int hci_uart_main(void);
6 
main(void)7 int main(void)
8 {
9 	hci_uart_main();
10 	return 0;
11 }
12