xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/strtod.awk (revision e6d6c189fa3a95d7aa27bbe0aeacf7c1a6b57c8c)
1{
2	x = "0x" $1 ; print x, x + 0
3	for (i=1; i<=NF; i++)
4		if ($i) print $i, "is not zero"
5}
6