1 /* 2 * Copyright (c) 2018 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/logging/log.h> 8 LOG_MODULE_REGISTER(net_native_posix_sample, LOG_LEVEL_DBG); 9 10 #include <zephyr/kernel.h> 11 #include <errno.h> 12 13 #include <zephyr/net/net_core.h> 14 15 /* This application itself does nothing as there is net-shell that can be used 16 * to monitor things. 17 */ main(void)18int main(void) 19 { 20 LOG_INF("Start application"); 21 return 0; 22 } 23