1 /*  Bluetooth Mesh */
2 
3 /*
4  * Copyright (c) 2017 Intel Corporation
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #if defined(CONFIG_BT_MESH_SELF_TEST)
10 int bt_mesh_test(void);
11 #else
bt_mesh_test(void)12 static inline int bt_mesh_test(void)
13 {
14 	return 0;
15 }
16 #endif
17