blob: 2a2bb25218203e89add50151a6c26edc052d4ec7 [file] [log] [blame]
/*
* Copyright (c) 2018 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(net_native_posix_sample, LOG_LEVEL_DBG);
#include <zephyr/kernel.h>
#include <errno.h>
#include <zephyr/net/net_core.h>
/* This application itself does nothing as there is net-shell that can be used
* to monitor things.
*/
void main(void)
{
LOG_INF("Start application");
}