~vcs-imports/gawk/master

1
2
3
4
5
6
7
BEGIN {
	f = "/no/such/file/1"
	print (getline junk < f)
	print close(f)
	f = "/no/such/file/2"
	print close(f)
}