You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
8 lines
227 B
C
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
|