summaryrefslogtreecommitdiff
path: root/datapath/linux-2.6/compat-2.6/include/linux/types.h
blob: b989d96c38ef18dccf0fee557d89484e185bdd23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __LINUX_TYPES_WRAPPER_H
#define __LINUX_TYPES_WRAPPER_H 1

#include_next <linux/types.h>

#ifndef HAVE_CSUM_TYPES
typedef __u16 __bitwise __sum16;
typedef __u32 __bitwise __wsum;
#endif

#ifndef HAVE_BOOL_TYPE
typedef _Bool bool;
#endif /* !HAVE_BOOL_TYPE */

#endif