~vcs-imports/gawk/master

1253 by Arnold D. Robbins
Fix problems passing uninitialized variables to typeof.
1
BEGIN {
2
	test(someidentifier)
3
}
4
5
6
function test(a)
7
{
8
	print typeof(a)
9
	a
10
	print typeof(a)
11
}