Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
dab93222dac6e4c7344dbfc44e0abe21f34d0eba
/
.
/
subsys
/
bluetooth
/
mesh
/
test.h
blob: 54f5ccace72f436760648abd535f6a4c039e57eb [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#if defined(CONFIG_BT_MESH_SELF_TEST)
int
bt_mesh_test
(
void
);
#else
static
inline
int
bt_mesh_test
(
void
)
{
return
0
;
}
#endif