Disable testing code
[reactos.git] / reactos / ntoskrnl / include / internal / asm.inc
1 %macro DECLARE_EXTERNAL_SYMBOL 1
2 %ifdef coff
3 extern _%1
4 %elifdef win32
5 extern _%1
6 %elifdef elf
7 extern %1
8 _%1:
9 call %1
10 ret
11 %endif
12 %endmacro
13
14 %macro DECLARE_GLOBAL_SYMBOL 1
15 %ifdef coff
16 global _%1
17 _%1:
18 %elifdef win32
19 global _%1
20 _%1:
21 %elifdef elf
22 global %1
23 %1:
24 %endif
25 %endmacro