11-02-2015, 03:20 PM
I suggest to not use multiple functions with variable names. Use single function with parameters.
But if really need:
Macro Macro2742
Function f_0
Function f_1
Function f_2
But if really need:
Macro Macro2742
;/exe
#exe addfunction "f_0"
#exe addfunction "f_1"
#exe addfunction "f_2"
int i
for i 0 3
#opt nowarnings 1
,call F"f_{i}"
,;;or, if need multiple threads:
,;mac F"f_{i}"
#opt nowarnings 0
Function f_1
Function f_2