aboutsummaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-16 16:34:15 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-16 16:34:15 +0100
commit169e56f2285860b058199c7480083740fc309b9b (patch)
tree913aee343cf4b555a9a476e82c9a6c12066745fa /include/stdlib.h
parentadd interspacing parameter to humansize (diff)
downloadslibc-169e56f2285860b058199c7480083740fc309b9b.tar.gz
slibc-169e56f2285860b058199c7480083740fc309b9b.tar.bz2
slibc-169e56f2285860b058199c7480083740fc309b9b.tar.xz
doc: arg 2 for *div must not be 0 (lest SIGFPE)
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--include/stdlib.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index cfdd0a7..fe0c5f7 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -61,7 +61,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`.
*/
@@ -73,7 +74,8 @@ div_t div(int, int)
* 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`.
*/
@@ -85,7 +87,8 @@ ldiv_t ldiv(long, long)
* 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`.
*/