• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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)
8IDENTIFIER(asm_function):
9  movl $41, %eax
10  ret
11