blob: bcb77614db3663e03ab5d171b6e8703bb6dacab2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
BEGIN {
# check that PROCINFO["errno"] is working properly
getline
if (close(FILENAME)) {
print "Error `" ERRNO "' closing input file"
print "errno =", PROCINFO["errno"]
}
getline < (FILENAME "/bogus")
print (PROCINFO["errno"] > 0), ERRNO
}
|