15 lines
188 B
C
15 lines
188 B
C
|
#ifndef __ASM_LINKAGE_H
|
||
|
#define __ASM_LINKAGE_H
|
||
|
|
||
|
#ifndef __ASSEMBLY__
|
||
|
|
||
|
#define asmlinkage CPP_ASMLINKAGE __attribute__((syscall_linkage))
|
||
|
|
||
|
#else
|
||
|
|
||
|
#include <asm/asmmacro.h>
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|