mirror of
https://github.com/openvswitch/ovs
synced 2025-10-19 14:37:21 +00:00
18 lines
198 B
C
18 lines
198 B
C
#ifndef COMPAT_H
|
|
#define COMPAT_H 1
|
|
|
|
#include <linux/version.h>
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
|
|
|
|
#include "compat26.h"
|
|
|
|
#else
|
|
|
|
#include "compat24.h"
|
|
|
|
#endif
|
|
|
|
|
|
#endif /* compat.h */
|