aboutsummaryrefslogtreecommitdiffstats
path: root/man7
diff options
context:
space:
mode:
authorAlejandro Colomar <colomar.6.4.3@gmail.com>2020-09-24 12:13:06 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-09-24 13:03:35 +0200
commit6680e1944e40a331ecab358693e8bad63fade319 (patch)
tree31d5dfc20f7620ed051e5444ec7d4ae3b5f37d7c /man7
parentb3b22e7f4d87157c0aaadecaed4d0b6e6770f882 (diff)
downloadman-pages-6680e1944e40a331ecab358693e8bad63fade319.tar.gz
system_data_types.7: Add ldiv_t
Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man7')
-rw-r--r--man7/system_data_types.722
1 files changed, 22 insertions, 0 deletions
diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
index 503502c601..5b3f259c4c 100644
--- a/man7/system_data_types.7
+++ b/man7/system_data_types.7
@@ -226,6 +226,28 @@ Conforming to: C99 and later; POSIX.1-2001 and later.
.IP
See also:
.BR imaxdiv (3)
+.\"------------------------------------- ldiv_t -----------------------/
+.TP
+.I ldiv_t
+.IP
+Include:
+.IR <stdlib.h> .
+.IP
+.EX
+typedef struct {
+ long quot; /* Quotient */
+ long rem; /* Remainder */
+} ldiv_t;
+.EE
+.IP
+It is the type of the value returned by the
+.BR ldiv (3)
+function.
+.IP
+Conforming to: C99 and later; POSIX.1-2001 and later.
+.IP
+See also:
+.BR ldiv (3)
.\"------------------------------------- pid_t ------------------------/
.TP
.I pid_t