diff options
Diffstat (limited to 'linux/arch/alpha/include/asm/linkage.h')
-rw-r--r-- | linux/arch/alpha/include/asm/linkage.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/linux/arch/alpha/include/asm/linkage.h b/linux/arch/alpha/include/asm/linkage.h new file mode 100644 index 00000000..7cfd06e8 --- /dev/null +++ b/linux/arch/alpha/include/asm/linkage.h @@ -0,0 +1,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 |