f-stack/dpdk/drivers/net/vmxnet3/base/vmxnet3_osdep.h

20 lines
395 B
C
Raw Normal View History

2019-06-25 11:12:58 +00:00
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
2017-04-21 10:43:26 +00:00
*/
#ifndef _VMXNET3_OSDEP_H
#define _VMXNET3_OSDEP_H
typedef uint64_t uint64;
typedef uint32_t uint32;
typedef uint16_t uint16;
typedef uint8_t uint8;
typedef int bool;
typedef char Bool;
#ifndef UNLIKELY
#define UNLIKELY(x) __builtin_expect((x),0)
#endif /* unlikely */
#endif /* _VMXNET3_OSDEP_H */