~vcs-imports/gawk/master

1
2
3
4
5
6
7
# test change of allowed exponent range
BEGIN {
	x=1.0e-10000
	print x+0
	PREC="double"
	print x+0
}