blob: 7cfd06e8c935163801c01c79dd420c7c1e6e665f (
plain)
1
2
3
4
5
6
7
8
|
#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
|