xref: /dpdk/lib/acl/rte_acl_osdep.h (revision 719834a6849e1daf4a70ff7742bbcc3ae7e25607)
1*99a2dd95SBruce Richardson /* SPDX-License-Identifier: BSD-3-Clause
2*99a2dd95SBruce Richardson  * Copyright(c) 2010-2014 Intel Corporation
3*99a2dd95SBruce Richardson  */
4*99a2dd95SBruce Richardson 
5*99a2dd95SBruce Richardson #ifndef _RTE_ACL_OSDEP_H_
6*99a2dd95SBruce Richardson #define _RTE_ACL_OSDEP_H_
7*99a2dd95SBruce Richardson 
8*99a2dd95SBruce Richardson /**
9*99a2dd95SBruce Richardson  * @file
10*99a2dd95SBruce Richardson  *
11*99a2dd95SBruce Richardson  * RTE ACL DPDK/OS dependent file.
12*99a2dd95SBruce Richardson  */
13*99a2dd95SBruce Richardson 
14*99a2dd95SBruce Richardson #include <stdint.h>
15*99a2dd95SBruce Richardson #include <stddef.h>
16*99a2dd95SBruce Richardson #include <inttypes.h>
17*99a2dd95SBruce Richardson #include <limits.h>
18*99a2dd95SBruce Richardson #include <ctype.h>
19*99a2dd95SBruce Richardson #include <string.h>
20*99a2dd95SBruce Richardson #include <errno.h>
21*99a2dd95SBruce Richardson #include <stdio.h>
22*99a2dd95SBruce Richardson #include <stdarg.h>
23*99a2dd95SBruce Richardson #include <stdlib.h>
24*99a2dd95SBruce Richardson #include <sys/queue.h>
25*99a2dd95SBruce Richardson 
26*99a2dd95SBruce Richardson /*
27*99a2dd95SBruce Richardson  * Common defines.
28*99a2dd95SBruce Richardson  */
29*99a2dd95SBruce Richardson 
30*99a2dd95SBruce Richardson #define DIM(x) RTE_DIM(x)
31*99a2dd95SBruce Richardson 
32*99a2dd95SBruce Richardson #include <rte_common.h>
33*99a2dd95SBruce Richardson #include <rte_vect.h>
34*99a2dd95SBruce Richardson #include <rte_memory.h>
35*99a2dd95SBruce Richardson #include <rte_log.h>
36*99a2dd95SBruce Richardson #include <rte_memcpy.h>
37*99a2dd95SBruce Richardson #include <rte_prefetch.h>
38*99a2dd95SBruce Richardson #include <rte_byteorder.h>
39*99a2dd95SBruce Richardson #include <rte_branch_prediction.h>
40*99a2dd95SBruce Richardson #include <rte_malloc.h>
41*99a2dd95SBruce Richardson #include <rte_eal.h>
42*99a2dd95SBruce Richardson #include <rte_per_lcore.h>
43*99a2dd95SBruce Richardson #include <rte_errno.h>
44*99a2dd95SBruce Richardson #include <rte_string_fns.h>
45*99a2dd95SBruce Richardson #include <rte_cpuflags.h>
46*99a2dd95SBruce Richardson #include <rte_debug.h>
47*99a2dd95SBruce Richardson 
48*99a2dd95SBruce Richardson #endif /* _RTE_ACL_OSDEP_H_ */
49