xref: /dpdk/drivers/net/vmxnet3/base/vmxnet3_osdep.h (revision 68a03efeed657e6e05f281479b33b51102797e15)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4 
5 #ifndef _VMXNET3_OSDEP_H
6 #define _VMXNET3_OSDEP_H
7 
8 #include <stdbool.h>
9 
10 typedef uint64_t	uint64;
11 typedef uint32_t	uint32;
12 typedef uint16_t	uint16;
13 typedef uint8_t		uint8;
14 
15 #ifndef UNLIKELY
16 #define UNLIKELY(x)  __builtin_expect((x),0)
17 #endif /* unlikely */
18 
19 #endif /* _VMXNET3_OSDEP_H */
20