diff options
author | Stephen Davies <sdavies@sdc.com.au> | 2014-08-24 10:26:36 +0930 |
---|---|---|
committer | Stephen Davies <sdavies@sdc.com.au> | 2014-08-24 10:26:36 +0930 |
commit | 8006ef4ca16fa8264dcc1e849783e1f4ce4978a1 (patch) | |
tree | e67f3ace9563ebb83d15a438b2124298486d39c0 /doc/gawktexi.in | |
parent | 9a7e5828f29d3f5daba5dc5ef1f6b9cd87f596b8 (diff) | |
parent | 8f2c2755573b81c1e2c9ef1c42c529d13396d4d2 (diff) | |
download | egawk-8006ef4ca16fa8264dcc1e849783e1f4ce4978a1.tar.gz egawk-8006ef4ca16fa8264dcc1e849783e1f4ce4978a1.tar.bz2 egawk-8006ef4ca16fa8264dcc1e849783e1f4ce4978a1.zip |
Merge branch 'comment' of ssh://git.sv.gnu.org/srv/git/gawk into comment
Remote changes?
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index bb94aa1f..bca15569 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -29680,8 +29680,20 @@ You can simulate the @code{div()} function in standard @command{awk} using this user-defined function: @example +@c file eg/lib/div.awk # div --- do integer division +@c endfile +@ignore +@c file eg/lib/div.awk +# +# Arnold Robbins, arnold@@skeeve.com, Public Domain +# July, 2014 + +@c endfile + +@end ignore +@c file eg/lib/div.awk function div(numerator, denominator, result, i) @{ split("", result) @@ -29693,6 +29705,7 @@ function div(numerator, denominator, result, i) return 0.0 @} +@c endfile @end example @node POSIX Floating Point Problems |