xref: /dpdk/examples/ip_pipeline/main.c (revision fbc74e66334f52a00263dd81dd49fe513b6e8967)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2015 Intel Corporation
3  */
4 
5 #include <stdio.h>
6 #include <string.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <getopt.h>
10 
11 #include <rte_eal.h>
12 
13 int
14 main(int argc, char **argv)
15 {
16 	int status;
17 
18 	/* EAL */
19 	status = rte_eal_init(argc, argv);
20 	if (status < 0) {
21 		printf("Error: EAL initialization failed (%d)\n", status);
22 		return status;
23 	};
24 
25 }
26