e1b5bb6d12
take them to asm/linkage.h, with default in linux/linkage.h Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
9 lines
217 B
C
9 lines
217 B
C
#ifndef __ASM_LINKAGE_H
|
|
#define __ASM_LINKAGE_H
|
|
|
|
#define cond_syscall(x) asm(".weak\t" #x "\n" #x " = sys_ni_syscall")
|
|
#define SYSCALL_ALIAS(alias, name) \
|
|
asm ( #alias " = " #name "\n\t.globl " #alias)
|
|
|
|
#endif
|