Blame test/aryprm9.awk

Packit 575503
#!/usr/bin/gawk -f
Packit 575503
BEGIN {
Packit 575503
Packit 575503
     for (i = 0; i < 100; i++)
Packit 575503
         func_exec()
Packit 575503
}
Packit 575503
Packit 575503
function func_exec(opaque)
Packit 575503
{
Packit 575503
     func_a(1, opaque)    #set additional argument, not expected by fname
Packit 575503
}
Packit 575503
Packit 575503
function func_a(a,    b, loc1, loc2)
Packit 575503
{
Packit 575503
     b = 0            #unref Nnull_string
Packit 575503
}