blob: 88d28eb2a5662f9daf8f1527cd19863b1fcc1b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _ASM_ALPHA_SYSCALL_H
#define _ASM_ALPHA_SYSCALL_H
#include <uapi/linux/audit.h>
static inline int syscall_get_arch(void)
{
return AUDIT_ARCH_ALPHA;
}
#endif /* _ASM_ALPHA_SYSCALL_H */
|