https://jxself.org/git/linux-libre.git
Raw File
Tip revision: d70bf5cfbca95fba80ca9b2e83e6073f49597da8 authored by Jason Self on 14 April 2014, 13:48:31 UTC
Linux-libre 3.13.10-gnu
Tip revision: d70bf5c
linkage.h
#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
back to top