diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-20 00:29:50 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-20 00:29:50 +0100 |
commit | aedadf2aa4030a506bb29ff21ebd424e16b1be83 (patch) | |
tree | 6d069915cebcc0b500a36a01e9eaf9eb9853e1ea /src/inttypes | |
parent | fix issue #4 (diff) | |
download | slibc-aedadf2aa4030a506bb29ff21ebd424e16b1be83.tar.gz slibc-aedadf2aa4030a506bb29ff21ebd424e16b1be83.tar.bz2 slibc-aedadf2aa4030a506bb29ff21ebd424e16b1be83.tar.xz |
more etymology
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/inttypes')
-rw-r--r-- | src/inttypes/imaxabs.c | 2 | ||||
-rw-r--r-- | src/inttypes/imaxdiv.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/inttypes/imaxabs.c b/src/inttypes/imaxabs.c index 651452a..25ed7b7 100644 --- a/src/inttypes/imaxabs.c +++ b/src/inttypes/imaxabs.c @@ -27,6 +27,8 @@ * overflow, and `INTMAX_MIN` will (probably) * be returned. * + * @etymology `(i)nt(max)_t`-function: (abs)olute value. + * * @param value The integer. * @return The absolute value of the integer. */ diff --git a/src/inttypes/imaxdiv.c b/src/inttypes/imaxdiv.c index 95b6410..e4d0caa 100644 --- a/src/inttypes/imaxdiv.c +++ b/src/inttypes/imaxdiv.c @@ -26,6 +26,8 @@ * Perform an integer division and return * both the quotient and the remainder. * + * @etymology `(i)nt(max)_t`-function: (div)ide. + * * @param numerator The numerator. * @param denominator The denominator, must not be 0 lest * the process will be killed by SIGFPE. |