aboutsummaryrefslogtreecommitdiffstats
path: root/src/inttypes
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/inttypes/div.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inttypes/div.c b/src/inttypes/div.c
index e0330ec..95b6410 100644
--- a/src/inttypes/div.c
+++ b/src/inttypes/div.c
@@ -27,7 +27,8 @@
* both the quotient and the remainder.
*
* @param numerator The numerator.
- * @param denominator The denominator.
+ * @param denominator The denominator, must not be 0 lest
+ * the process will be killed by SIGFPE.
* @return The quotient in `.quot`, and
* the remainder in `.rem`.
*/