linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] system_data_types.7: Add div_t
@ 2020-09-24 10:13 Alejandro Colomar
  2020-09-24 10:13 ` [PATCH 2/6] div_t.3: New link to system_data_types(7) Alejandro Colomar
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:13 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man, Alejandro Colomar

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man7/system_data_types.7 | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
index c00345741..077d669b4 100644
--- a/man7/system_data_types.7
+++ b/man7/system_data_types.7
@@ -95,6 +95,28 @@ See also:
 .BR aio_suspend (3),
 .BR aio_write (3),
 .BR lio_listio (3)
+.\"------------------------------------- div_t ------------------------/
+.TP
+.I div_t
+.IP
+Include:
+.IR <stdlib.h> .
+.IP
+.EX
+typedef struct {
+    int quot; /* Quotient */
+    int rem;  /* Remainder */
+} div_t;
+.EE
+.IP
+It is the type of the value returned by the
+.I div (3)
+function.
+.IP
+Conforming to: C99 and later; POSIX.1-2001 and later.
+.IP
+See also:
+.BR div (3)
 .\"------------------------------------- fenv_t -----------------------/
 .TP
 .I fenv_t
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH 2/6] div_t.3: New link to system_data_types(7)
  2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
@ 2020-09-24 10:13 ` Alejandro Colomar
  2020-09-24 11:05   ` Michael Kerrisk (man-pages)
  2020-09-24 10:13 ` [PATCH 3/6] system_data_types.7: Add ldiv_t Alejandro Colomar
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:13 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man, Alejandro Colomar

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man3/div_t.3 | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 man3/div_t.3

diff --git a/man3/div_t.3 b/man3/div_t.3
new file mode 100644
index 000000000..db50c0f09
--- /dev/null
+++ b/man3/div_t.3
@@ -0,0 +1 @@
+.so man7/system_data_types.7
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH 3/6] system_data_types.7: Add ldiv_t
  2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
  2020-09-24 10:13 ` [PATCH 2/6] div_t.3: New link to system_data_types(7) Alejandro Colomar
@ 2020-09-24 10:13 ` Alejandro Colomar
  2020-09-24 11:05   ` Michael Kerrisk (man-pages)
  2020-09-24 10:13 ` [PATCH 4/6] ldiv_t.3: New link to system_data_types(7) Alejandro Colomar
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:13 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man, Alejandro Colomar

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man7/system_data_types.7 | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
index 077d669b4..1f7c172d7 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
+.I 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
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH 4/6] ldiv_t.3: New link to system_data_types(7)
  2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
  2020-09-24 10:13 ` [PATCH 2/6] div_t.3: New link to system_data_types(7) Alejandro Colomar
  2020-09-24 10:13 ` [PATCH 3/6] system_data_types.7: Add ldiv_t Alejandro Colomar
@ 2020-09-24 10:13 ` Alejandro Colomar
  2020-09-24 11:05   ` Michael Kerrisk (man-pages)
  2020-09-24 10:13 ` [PATCH 5/6] system_data_types.7: Add lldiv_t Alejandro Colomar
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:13 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man, Alejandro Colomar

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man3/ldiv_t.3 | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 man3/ldiv_t.3

diff --git a/man3/ldiv_t.3 b/man3/ldiv_t.3
new file mode 100644
index 000000000..db50c0f09
--- /dev/null
+++ b/man3/ldiv_t.3
@@ -0,0 +1 @@
+.so man7/system_data_types.7
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH 5/6] system_data_types.7: Add lldiv_t
  2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
                   ` (2 preceding siblings ...)
  2020-09-24 10:13 ` [PATCH 4/6] ldiv_t.3: New link to system_data_types(7) Alejandro Colomar
@ 2020-09-24 10:13 ` Alejandro Colomar
  2020-09-24 10:26   ` Alejandro Colomar
  2020-09-24 11:07   ` Michael Kerrisk (man-pages)
  2020-09-24 10:13 ` [PATCH 6/6] lldiv_t.3: New link to system_data_types(7) Alejandro Colomar
  2020-09-24 11:05 ` [PATCH 1/6] system_data_types.7: Add div_t Michael Kerrisk (man-pages)
  5 siblings, 2 replies; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:13 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man, Alejandro Colomar

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man7/system_data_types.7 | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
index 1f7c172d7..c3add1400 100644
--- a/man7/system_data_types.7
+++ b/man7/system_data_types.7
@@ -248,6 +248,28 @@ Conforming to: C99 and later; POSIX.1-2001 and later.
 .IP
 See also:
 .BR ldiv (3)
+.\"------------------------------------- lldiv_t ----------------------/
+.TP
+.I lldiv_t
+.IP
+Include:
+.IR <stdlib.h> .
+.IP
+.EX
+typedef struct {
+    long long   quot; /* Quotient */
+    long long   rem;  /* Remainder */
+} lldiv_t;
+.EE
+.IP
+It is the type of the value returned by the
+.I lldiv (3)
+function.
+.IP
+Conforming to: C99 and later; POSIX.1-2001 and later.
+.IP
+See also:
+.BR lldiv (3)
 .\"------------------------------------- pid_t ------------------------/
 .TP
 .I pid_t
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [PATCH 6/6] lldiv_t.3: New link to system_data_types(7)
  2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
                   ` (3 preceding siblings ...)
  2020-09-24 10:13 ` [PATCH 5/6] system_data_types.7: Add lldiv_t Alejandro Colomar
@ 2020-09-24 10:13 ` Alejandro Colomar
  2020-09-24 11:07   ` Michael Kerrisk (man-pages)
  2020-09-24 11:05 ` [PATCH 1/6] system_data_types.7: Add div_t Michael Kerrisk (man-pages)
  5 siblings, 1 reply; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:13 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man, Alejandro Colomar

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
---
 man3/lldiv_t.3 | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 man3/lldiv_t.3

diff --git a/man3/lldiv_t.3 b/man3/lldiv_t.3
new file mode 100644
index 000000000..db50c0f09
--- /dev/null
+++ b/man3/lldiv_t.3
@@ -0,0 +1 @@
+.so man7/system_data_types.7
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* Re: [PATCH 5/6] system_data_types.7: Add lldiv_t
  2020-09-24 10:13 ` [PATCH 5/6] system_data_types.7: Add lldiv_t Alejandro Colomar
@ 2020-09-24 10:26   ` Alejandro Colomar
  2020-09-24 10:29     ` Alejandro Colomar
  2020-09-24 11:06     ` Michael Kerrisk (man-pages)
  2020-09-24 11:07   ` Michael Kerrisk (man-pages)
  1 sibling, 2 replies; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:26 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man

Oops,

see typo below:

On 2020-09-24 12:13, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>   man7/system_data_types.7 | 22 ++++++++++++++++++++++
>   1 file changed, 22 insertions(+)
> 
> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
> index 1f7c172d7..c3add1400 100644
> --- a/man7/system_data_types.7
> +++ b/man7/system_data_types.7
> @@ -248,6 +248,28 @@ Conforming to: C99 and later; POSIX.1-2001 and later.
>   .IP
>   See also:
>   .BR ldiv (3)
> +.\"------------------------------------- lldiv_t ----------------------/
> +.TP
> +.I lldiv_t
> +.IP
> +Include:
> +.IR <stdlib.h> .
> +.IP
> +.EX
> +typedef struct {
> +    long long   quot; /* Quotient */
> +    long long   rem;  /* Remainder */
> +} lldiv_t;
> +.EE
> +.IP
> +It is the type of the value returned by the
> +.I lldiv (3)

I should've used .IR

It's the same in the other patches

Please fix it before applying if you haven't done yet.

I'll send a fix for imaxdiv_t.

> +function.
> +.IP
> +Conforming to: C99 and later; POSIX.1-2001 and later.
> +.IP
> +See also:
> +.BR lldiv (3)
>   .\"------------------------------------- pid_t ------------------------/
>   .TP
>   .I pid_t
> 

Thanks,

Alex

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 5/6] system_data_types.7: Add lldiv_t
  2020-09-24 10:26   ` Alejandro Colomar
@ 2020-09-24 10:29     ` Alejandro Colomar
  2020-09-24 11:06     ` Michael Kerrisk (man-pages)
  1 sibling, 0 replies; 15+ messages in thread
From: Alejandro Colomar @ 2020-09-24 10:29 UTC (permalink / raw)
  To: mtk.manpages; +Cc: linux-man

D'oh!

On 2020-09-24 12:26, Alejandro Colomar wrote:
> Oops,
> 
> see typo below:
> 
> On 2020-09-24 12:13, Alejandro Colomar wrote:
>> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
>> ---
>>   man7/system_data_types.7 | 22 ++++++++++++++++++++++
>>   1 file changed, 22 insertions(+)
>>
>> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
>> index 1f7c172d7..c3add1400 100644
>> --- a/man7/system_data_types.7
>> +++ b/man7/system_data_types.7
>> @@ -248,6 +248,28 @@ Conforming to: C99 and later; POSIX.1-2001 and 
>> later.
>>   .IP
>>   See also:
>>   .BR ldiv (3)
>> +.\"------------------------------------- lldiv_t ----------------------/
>> +.TP
>> +.I lldiv_t
>> +.IP
>> +Include:
>> +.IR <stdlib.h> .
>> +.IP
>> +.EX
>> +typedef struct {
>> +    long long   quot; /* Quotient */
>> +    long long   rem;  /* Remainder */
>> +} lldiv_t;
>> +.EE
>> +.IP
>> +It is the type of the value returned by the
>> +.I lldiv (3)
> 
> I should've used .IR

.BR

> 
> It's the same in the other patches
> 
> Please fix it before applying if you haven't done yet.
> 
> I'll send a fix for imaxdiv_t.
> 
>> +function.
>> +.IP
>> +Conforming to: C99 and later; POSIX.1-2001 and later.
>> +.IP
>> +See also:
>> +.BR lldiv (3)
>>   .\"------------------------------------- pid_t 
>> ------------------------/
>>   .TP
>>   .I pid_t
>>
> 
> Thanks,
> 
> Alex

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 1/6] system_data_types.7: Add div_t
  2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
                   ` (4 preceding siblings ...)
  2020-09-24 10:13 ` [PATCH 6/6] lldiv_t.3: New link to system_data_types(7) Alejandro Colomar
@ 2020-09-24 11:05 ` Michael Kerrisk (man-pages)
  5 siblings, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:05 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>  man7/system_data_types.7 | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
> index c00345741..077d669b4 100644
> --- a/man7/system_data_types.7
> +++ b/man7/system_data_types.7
> @@ -95,6 +95,28 @@ See also:
>  .BR aio_suspend (3),
>  .BR aio_write (3),
>  .BR lio_listio (3)
> +.\"------------------------------------- div_t ------------------------/
> +.TP
> +.I div_t
> +.IP
> +Include:
> +.IR <stdlib.h> .
> +.IP
> +.EX
> +typedef struct {
> +    int quot; /* Quotient */
> +    int rem;  /* Remainder */
> +} div_t;
> +.EE
> +.IP
> +It is the type of the value returned by the
> +.I div (3)
> +function.
> +.IP
> +Conforming to: C99 and later; POSIX.1-2001 and later.
> +.IP
> +See also:
> +.BR div (3)
>  .\"------------------------------------- fenv_t -----------------------/
>  .TP
>  .I fenv_t
> 

Applied.

Thanks,

Michael

-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2/6] div_t.3: New link to system_data_types(7)
  2020-09-24 10:13 ` [PATCH 2/6] div_t.3: New link to system_data_types(7) Alejandro Colomar
@ 2020-09-24 11:05   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:05 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>  man3/div_t.3 | 1 +
>  1 file changed, 1 insertion(+)
>  create mode 100644 man3/div_t.3
> 
> diff --git a/man3/div_t.3 b/man3/div_t.3
> new file mode 100644
> index 000000000..db50c0f09
> --- /dev/null
> +++ b/man3/div_t.3
> @@ -0,0 +1 @@
> +.so man7/system_data_types.7
> 


Applied.

Thanks,

Michael



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 3/6] system_data_types.7: Add ldiv_t
  2020-09-24 10:13 ` [PATCH 3/6] system_data_types.7: Add ldiv_t Alejandro Colomar
@ 2020-09-24 11:05   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:05 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>  man7/system_data_types.7 | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
> index 077d669b4..1f7c172d7 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
> +.I 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
> 


Applied.

Thanks,

Michael



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 4/6] ldiv_t.3: New link to system_data_types(7)
  2020-09-24 10:13 ` [PATCH 4/6] ldiv_t.3: New link to system_data_types(7) Alejandro Colomar
@ 2020-09-24 11:05   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:05 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>  man3/ldiv_t.3 | 1 +
>  1 file changed, 1 insertion(+)
>  create mode 100644 man3/ldiv_t.3
> 
> diff --git a/man3/ldiv_t.3 b/man3/ldiv_t.3
> new file mode 100644
> index 000000000..db50c0f09
> --- /dev/null
> +++ b/man3/ldiv_t.3
> @@ -0,0 +1 @@
> +.so man7/system_data_types.7
> 

Applied.

Thanks,

Michael



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 5/6] system_data_types.7: Add lldiv_t
  2020-09-24 10:26   ` Alejandro Colomar
  2020-09-24 10:29     ` Alejandro Colomar
@ 2020-09-24 11:06     ` Michael Kerrisk (man-pages)
  1 sibling, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:06 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:26 PM, Alejandro Colomar wrote:
> Oops,
> 
> see typo below:
> 
> On 2020-09-24 12:13, Alejandro Colomar wrote:
>> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
>> ---
>>   man7/system_data_types.7 | 22 ++++++++++++++++++++++
>>   1 file changed, 22 insertions(+)
>>
>> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
>> index 1f7c172d7..c3add1400 100644
>> --- a/man7/system_data_types.7
>> +++ b/man7/system_data_types.7
>> @@ -248,6 +248,28 @@ Conforming to: C99 and later; POSIX.1-2001 and later.
>>   .IP
>>   See also:
>>   .BR ldiv (3)
>> +.\"------------------------------------- lldiv_t ----------------------/
>> +.TP
>> +.I lldiv_t
>> +.IP
>> +Include:
>> +.IR <stdlib.h> .
>> +.IP
>> +.EX
>> +typedef struct {
>> +    long long   quot; /* Quotient */
>> +    long long   rem;  /* Remainder */
>> +} lldiv_t;
>> +.EE
>> +.IP
>> +It is the type of the value returned by the
>> +.I lldiv (3)
> 
> I should've used .IR
> 
> It's the same in the other patches
>
> Please fix it before applying if you haven't done yet.

I fixed them all to use .BR.


> I'll send a fix for imaxdiv_t.

Okay.

Thanks,

Michael

-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 5/6] system_data_types.7: Add lldiv_t
  2020-09-24 10:13 ` [PATCH 5/6] system_data_types.7: Add lldiv_t Alejandro Colomar
  2020-09-24 10:26   ` Alejandro Colomar
@ 2020-09-24 11:07   ` Michael Kerrisk (man-pages)
  1 sibling, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:07 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>  man7/system_data_types.7 | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/man7/system_data_types.7 b/man7/system_data_types.7
> index 1f7c172d7..c3add1400 100644
> --- a/man7/system_data_types.7
> +++ b/man7/system_data_types.7
> @@ -248,6 +248,28 @@ Conforming to: C99 and later; POSIX.1-2001 and later.
>  .IP
>  See also:
>  .BR ldiv (3)
> +.\"------------------------------------- lldiv_t ----------------------/
> +.TP
> +.I lldiv_t
> +.IP
> +Include:
> +.IR <stdlib.h> .
> +.IP
> +.EX
> +typedef struct {
> +    long long   quot; /* Quotient */
> +    long long   rem;  /* Remainder */
> +} lldiv_t;
> +.EE
> +.IP
> +It is the type of the value returned by the
> +.I lldiv (3)
> +function.
> +.IP
> +Conforming to: C99 and later; POSIX.1-2001 and later.
> +.IP
> +See also:
> +.BR lldiv (3)
>  .\"------------------------------------- pid_t ------------------------/
>  .TP
>  .I pid_t
> 


Applied.

Thanks,

Michael



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 6/6] lldiv_t.3: New link to system_data_types(7)
  2020-09-24 10:13 ` [PATCH 6/6] lldiv_t.3: New link to system_data_types(7) Alejandro Colomar
@ 2020-09-24 11:07   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-09-24 11:07 UTC (permalink / raw)
  To: Alejandro Colomar; +Cc: mtk.manpages, linux-man

On 9/24/20 12:13 PM, Alejandro Colomar wrote:
> Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
> ---
>  man3/lldiv_t.3 | 1 +
>  1 file changed, 1 insertion(+)
>  create mode 100644 man3/lldiv_t.3
> 
> diff --git a/man3/lldiv_t.3 b/man3/lldiv_t.3
> new file mode 100644
> index 000000000..db50c0f09
> --- /dev/null
> +++ b/man3/lldiv_t.3
> @@ -0,0 +1 @@
> +.so man7/system_data_types.7
> 


Applied.

Thanks,

Michael



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2020-09-24 11:07 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-24 10:13 [PATCH 1/6] system_data_types.7: Add div_t Alejandro Colomar
2020-09-24 10:13 ` [PATCH 2/6] div_t.3: New link to system_data_types(7) Alejandro Colomar
2020-09-24 11:05   ` Michael Kerrisk (man-pages)
2020-09-24 10:13 ` [PATCH 3/6] system_data_types.7: Add ldiv_t Alejandro Colomar
2020-09-24 11:05   ` Michael Kerrisk (man-pages)
2020-09-24 10:13 ` [PATCH 4/6] ldiv_t.3: New link to system_data_types(7) Alejandro Colomar
2020-09-24 11:05   ` Michael Kerrisk (man-pages)
2020-09-24 10:13 ` [PATCH 5/6] system_data_types.7: Add lldiv_t Alejandro Colomar
2020-09-24 10:26   ` Alejandro Colomar
2020-09-24 10:29     ` Alejandro Colomar
2020-09-24 11:06     ` Michael Kerrisk (man-pages)
2020-09-24 11:07   ` Michael Kerrisk (man-pages)
2020-09-24 10:13 ` [PATCH 6/6] lldiv_t.3: New link to system_data_types(7) Alejandro Colomar
2020-09-24 11:07   ` Michael Kerrisk (man-pages)
2020-09-24 11:05 ` [PATCH 1/6] system_data_types.7: Add div_t Michael Kerrisk (man-pages)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).