asm.h (130B)
1 #ifndef _ASM_H_ 2 #define _ASM_H_ 3 4 #define ENTRY(x) .text; .p2align 2,0x90; \ 5 .globl x; .type x,@function; x: 6 7 #endif // _ASM_H_