aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.1
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-03 09:11:31 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-03 09:11:31 +0300
commita899726e00426379e74b13732b2b6bf094f47cd9 (patch)
tree4b61f9e4922a3cd9b1d6fdf245a6c378f2c13629 /doc/gawk.1
parentbbeeb351c73fb1ee4ff20c3774e0477e9e8a7513 (diff)
parentddc290584b39bab2c1edcec935a31ea12d343246 (diff)
downloadegawk-a899726e00426379e74b13732b2b6bf094f47cd9.tar.gz
egawk-a899726e00426379e74b13732b2b6bf094f47cd9.tar.bz2
egawk-a899726e00426379e74b13732b2b6bf094f47cd9.zip
Merge branch 'master' into feature/regex-type
Diffstat (limited to 'doc/gawk.1')
-rw-r--r--doc/gawk.116
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/gawk.1 b/doc/gawk.1
index 45a4c9f2..cbc15d15 100644
--- a/doc/gawk.1
+++ b/doc/gawk.1
@@ -13,7 +13,7 @@
. if \w'\(rq' .ds rq "\(rq
. \}
.\}
-.TH GAWK 1 "Mar 24 2015" "Free Software Foundation" "Utility Commands"
+.TH GAWK 1 "Apr 02 2015" "Free Software Foundation" "Utility Commands"
.SH NAME
gawk \- pattern scanning and processing language
.SH SYNOPSIS
@@ -2680,7 +2680,13 @@ Return the cosine of
.IR expr ,
which is in radians.
.TP
-.BI div( num ", " denom ", " result )
+.BI exp( expr )
+The exponential function.
+.TP
+.BI int( expr )
+Truncate to integer.
+.TP
+.BI intdiv( num ", " denom ", " result )
Truncate
.I num
and
@@ -2697,12 +2703,6 @@ This is a
extension, primarily of value when working with
arbitrarily large integers.
.TP
-.BI exp( expr )
-The exponential function.
-.TP
-.BI int( expr )
-Truncate to integer.
-.TP
.BI log( expr )
The natural logarithm function.
.TP