eal/windows: introduce Windows support
[dpdk.git] / lib / librte_eal / windows / eal / eal.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2019 Intel Corporation
3  */
4
5 #include <rte_common.h>
6
7  /* Launch threads, called at application init(). */
8 int
9 rte_eal_init(int argc __rte_unused, char **argv __rte_unused)
10 {
11         /* TODO */
12         /* This is a stub, not the expected result */
13         return 0;
14 }