Files
2025-05-21 10:08:56 +06:00

8 lines
227 B
C

#include <linux/version.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0)
#include <uapi/asm-generic/errno-base.h> // For kernels 3.7 and newer
#else
#include <asm-generic/errno-base.h> // For kernels older than 3.7
#endif