Blame test/closebad.awk

Packit 575503
BEGIN {
Packit 575503
	f = "/no/such/file/1"
Packit 575503
	print (getline junk < f)
Packit 575503
	print close(f)
Packit 575503
	f = "/no/such/file/2"
Packit 575503
	print close(f)
Packit 575503
}