aboutsummaryrefslogtreecommitdiffstats
path: root/awklib/eg/lib/strtonum.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-11-17 16:54:41 +0200
committerArnold D. Robbins <arnold@skeeve.com>2014-11-17 16:54:41 +0200
commit41da6a35e2cca4ec3c6b7c61e204e51484ecd7eb (patch)
tree39104b9569f71242e40d5c990bd63f56116c3d65 /awklib/eg/lib/strtonum.awk
parent31c6051694d3152e50eb037e20c4734c7321eac6 (diff)
parent46fb38d70fe250f318fb95a6083beaceaaf5155d (diff)
downloadegawk-41da6a35e2cca4ec3c6b7c61e204e51484ecd7eb.tar.gz
egawk-41da6a35e2cca4ec3c6b7c61e204e51484ecd7eb.tar.bz2
egawk-41da6a35e2cca4ec3c6b7c61e204e51484ecd7eb.zip
Merge branch 'gawk-4.1-stable' into memory-work
Diffstat (limited to 'awklib/eg/lib/strtonum.awk')
-rw-r--r--awklib/eg/lib/strtonum.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/awklib/eg/lib/strtonum.awk b/awklib/eg/lib/strtonum.awk
index cd56a449..783496e4 100644
--- a/awklib/eg/lib/strtonum.awk
+++ b/awklib/eg/lib/strtonum.awk
@@ -52,7 +52,7 @@ function mystrtonum(str, ret, n, i, k, c)
# a[6] = "1.e3"
# a[7] = "1.32"
# a[8] = "1.32E2"
-#
+#
# for (i = 1; i in a; i++)
# print a[i], strtonum(a[i]), mystrtonum(a[i])
# }