Use .Pp instead of empty lines.

This commit is contained in:
wiz 2002-01-15 02:37:56 +00:00
parent a62d4fbf73
commit 626980860b
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: strtol.3,v 1.15 2001/09/16 01:31:53 wiz Exp $
.\" $NetBSD: strtol.3,v 1.16 2002/01/15 02:37:56 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -55,11 +55,11 @@
.Fn strtol "const char * restrict nptr" "char ** restrict endptr" "int base"
.Ft long long int
.Fn strtoll "const char * restrict nptr" "char ** restrict endptr" "int base"
.Pp
.Fd #include <inttypes.h>
.Ft intmax_t
.Fn strtoimax "const char * restrict nptr" "char ** restrict endptr" "int base"
.Pp
.Fd #include <sys/types.h>
.Fd #include <stdlib.h>
.Fd #include <limits.h>

View File

@ -1,4 +1,4 @@
.\" $NetBSD: strtoul.3,v 1.13 2001/09/16 01:31:54 wiz Exp $
.\" $NetBSD: strtoul.3,v 1.14 2002/01/15 02:37:57 wiz Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -55,11 +55,11 @@
.Fn strtoul "const char * restrict nptr" "char ** restrict endptr" "int base"
.Ft unsigned long long int
.Fn strtoull "const char * restrict nptr" "char ** restrict endptr" "int base"
.Pp
.Fd #include <inttypes.h>
.Ft uintmax_t
.Fn strtoumax "const char * restrict nptr" "char ** restrict endptr" "int base"
.Pp
.Fd #include <sys/types.h>
.Fd #include <stdlib.h>
.Fd #include <limits.h>