diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-03 09:08:54 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-03 09:08:54 +0300 |
commit | ddc290584b39bab2c1edcec935a31ea12d343246 (patch) | |
tree | 352f4d61be79f740d27bfb97a65b62a8d0425cd5 /doc/gawk.1 | |
parent | 902b25a40d5cc612dd7a0becb27a5a48afa49716 (diff) | |
download | egawk-ddc290584b39bab2c1edcec935a31ea12d343246.tar.gz egawk-ddc290584b39bab2c1edcec935a31ea12d343246.tar.bz2 egawk-ddc290584b39bab2c1edcec935a31ea12d343246.zip |
Rename "div()" to "intdiv()".
Diffstat (limited to 'doc/gawk.1')
-rw-r--r-- | doc/gawk.1 | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 |