summaryrefslogtreecommitdiff
path: root/backport-include/linux/types.h
blob: 0671e1408f130ae79db24e97d51b8ce47ae04621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __BACKPORT_TYPES
#define __BACKPORT_TYPES
#include <linux/version.h>
#include_next <linux/types.h>

#if LINUX_VERSION_IS_LESS(3,17,0)
typedef __s64 time64_t;
#endif

#if LINUX_VERSION_IS_LESS(4,16,0)
typedef unsigned __poll_t;
#endif

#endif /* __BACKPORT_TYPES */