mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-12-29 03:13:51 +01:00
This requires Linux 2.6.35 or newer to build, so it is deactivated by default in the "mconfig" file.
16 lines
282 B
C
16 lines
282 B
C
#ifndef _IP_SET_KERNEL_H
|
|
#define _IP_SET_KERNEL_H
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
#ifdef CONFIG_DEBUG_KERNEL
|
|
/* Complete debug messages */
|
|
#define pr_fmt(fmt) "%s %s[%i]: " fmt "\n", __FILE__, __func__, __LINE__
|
|
#endif
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /*_IP_SET_H */
|