New upstream version 18.02
[deb_dpdk.git] / drivers / net / vmxnet3 / base / vmxnet3_osdep.h
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 typedef uint64_t        uint64;
9 typedef uint32_t        uint32;
10 typedef uint16_t        uint16;
11 typedef uint8_t         uint8;
12 typedef int             bool;
13 typedef char            Bool;
14
15 #ifndef UNLIKELY
16 #define UNLIKELY(x)  __builtin_expect((x),0)
17 #endif /* unlikely */
18
19 #endif /* _VMXNET3_OSDEP_H */