mirror of
https://github.com/AlexisTM/RT-WiFi.git
synced 2024-12-18 21:28:07 +00:00
11 lines
244 B
C
11 lines
244 B
C
#ifndef __BACKPORT_LINUX_CRED_H
|
|
#define __BACKPORT_LINUX_CRED_H
|
|
#include_next <linux/cred.h>
|
|
#include <linux/version.h>
|
|
|
|
#ifndef current_user_ns
|
|
#define current_user_ns() (current->nsproxy->user_ns)
|
|
#endif
|
|
|
|
#endif /* __BACKPORT_LINUX_CRED_H */
|