mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 09:02:35 +00:00
Rename reserved function names in the subsys/ subdirectory except for static _mod_pub_set and _mod_unbind functions in bluetooth mesh cfg_srv.c which clash with the similarly named global functions. Signed-off-by: Patrik Flykt <patrik.flykt@intel.com>
14 lines
280 B
C
14 lines
280 B
C
/* IEEE 802.15.4 settings header */
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_NET_L2_BT) && defined(CONFIG_NET_CONFIG_SETTINGS)
|
|
int z_net_config_bt_setup(void);
|
|
#else
|
|
#define z_net_config_bt_setup(...) 0
|
|
#endif
|