blob: 381a68db6957552f3a5ad91e76260417eb51db1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
*/
#ifndef _VMXNET3_OSDEP_H
#define _VMXNET3_OSDEP_H
#include <stdbool.h>
typedef uint64_t uint64;
typedef uint32_t uint32;
typedef uint16_t uint16;
typedef uint8_t uint8;
#ifndef UNLIKELY
#define UNLIKELY(x) __builtin_expect((x),0)
#endif /* unlikely */
#endif /* _VMXNET3_OSDEP_H */
|