diff options
Diffstat (limited to '')
| -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. | 
