take them to asm/linkage.h, with default in linux/linkage.h Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			217 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 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
 |