blob: 99651b0ea7c726a81393127f8a18d873515a0fe6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_LINKAGE_H
2#define __ASM_LINKAGE_H
3
Jan Beulichab7efcc2006-03-24 03:16:17 -08004#ifdef __ASSEMBLY__
5#include <asm/asm.h>
6#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Al Viroe1b5bb62013-01-21 17:16:07 -05008#define cond_syscall(x) asm(".weak\t" #x "\n" #x "\t=\tsys_ni_syscall")
9#define SYSCALL_ALIAS(alias, name) \
10 asm ( #alias " = " #name "\n\t.globl " #alias)
Ralf Baechle641e97f2007-10-11 23:46:05 +010011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#endif