blob: a6a1e99c7445f6de89f4892f1f9cf385c35f8acc [file] [log] [blame]
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001#ifndef LINUX_VERSION_H
2#define LINUX_VERSION_H
3
4#ifdef HAVE_LINUX_VERSION_H
5# include <linux/version.h>
6#endif
7
8#ifndef KERNEL_VERSION
9# define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
10#endif
11
12int get_linux_version(void);
13
14#endif /* LINUX_VERSION_H */