1 /*
2  * Copyright (c) 2012-2014 Wind River Systems, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
main(void)7 int main(void)
8 {
9 	return 0;
10 }
11 
12 #ifdef CONFIG_CONNECTIVITY_WIFI_MGMT_APPLICATION
13 
14 #include <zephyr/net/conn_mgr_connectivity_impl.h>
15 #include <zephyr/net/conn_mgr/connectivity_wifi_mgmt.h>
16 
17 /* Bind L2 connectity APIs. */
18 static struct conn_mgr_conn_api conn_api = { 0 };
19 
20 CONN_MGR_CONN_DEFINE(CONNECTIVITY_WIFI_MGMT, &conn_api);
21 
22 #endif /* CONFIG_CONNECTIVITY_WIFI_MGMT_APPLICATION */
23