Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v3.17 13 lines 232 B view raw
1 2#ifndef PERF_LINUX_LINKAGE_H_ 3#define PERF_LINUX_LINKAGE_H_ 4 5/* linkage.h ... for including arch/x86/lib/memcpy_64.S */ 6 7#define ENTRY(name) \ 8 .globl name; \ 9 name: 10 11#define ENDPROC(name) 12 13#endif /* PERF_LINUX_LINKAGE_H_ */