Home | History | Annotate | Download | only in subdir4
      1 #if PLATFORM_WINDOWS || PLATFORM_MAC
      2 # define IDENTIFIER(n)  _##n
      3 #else /* Linux */
      4 # define IDENTIFIER(n)  n
      5 #endif
      6 
      7 .globl IDENTIFIER(asm_function)
      8 IDENTIFIER(asm_function):
      9   movl $41, %eax
     10   ret
     11