mirror of
https://github.com/AuxXxilium/arc-lkm.git
synced 2024-11-23 14:50:57 +07:00
d288da5003
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
12 lines
296 B
C
Executable File
12 lines
296 B
C
Executable File
#ifndef REDPILL_STRING_COMPAT_H
|
|
#define REDPILL_STRING_COMPAT_H
|
|
|
|
#include <linux/version.h> //KERNEL_VERSION()
|
|
#include <linux/types.h> //ssize_t
|
|
|
|
#if LINUX_VERSION_CODE <= KERNEL_VERSION(4,3,0)
|
|
ssize_t __must_check strscpy(char *, const char *, size_t);
|
|
#endif
|
|
|
|
#endif //REDPILL_STRING_COMPAT_H
|