diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-03-26 19:30:42 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-03-26 19:30:42 +0000 |
commit | 0e101a71f9c747c1bf5f853b2faba8c94458bab9 (patch) | |
tree | b1f8223f0d93941122cb0666f5713cfccbf9a879 /lib/libc/stdio | |
parent | a5a79a7af92e40132a0b0e09c9fc0eaa57985b9c (diff) |
dispense with some wacky escape sequences;
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/fopen.3 | 8 | ||||
-rw-r--r-- | lib/libc/stdio/printf.3 | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/stdio/fopen.3 b/lib/libc/stdio/fopen.3 index fb340b65096..be51398d27e 100644 --- a/lib/libc/stdio/fopen.3 +++ b/lib/libc/stdio/fopen.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fopen.3,v 1.21 2009/09/10 16:09:22 jmc Exp $ +.\" $OpenBSD: fopen.3,v 1.22 2010/03/26 19:30:41 jmc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -31,7 +31,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: September 10 2009 $ +.Dd $Mdocdate: March 26 2010 $ .Dt FOPEN 3 .Os .Sh NAME @@ -103,7 +103,7 @@ to be forced to the current end-of-file, regardless of intervening repositioning of the stream. .Pp Any created files will have mode -.Pf \\*q Dv S_IRUSR +.Pf \*q Dv S_IRUSR \&| .Dv S_IWUSR \&| @@ -113,7 +113,7 @@ Any created files will have mode \&| .Dv S_IROTH \&| -.Dv S_IWOTH Ns \\*q +.Dv S_IWOTH Ns \*q .Pq Li 0666 , as modified by the process' umask value (see diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3 index 91e10c45456..bcfc68a1063 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.3,v 1.57 2008/09/15 19:22:32 martynas Exp $ +.\" $OpenBSD: printf.3,v 1.58 2010/03/26 19:30:41 jmc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -33,7 +33,7 @@ .\" .\" @(#)printf.3 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: September 15 2008 $ +.Dd $Mdocdate: March 26 2010 $ .Dt PRINTF 3 .Os .Sh NAME @@ -448,7 +448,7 @@ The .Li double argument is rounded and converted in the style .Sm off -.Pf [\-]d Cm \&. No ddd Cm e No \\*(Pmdd +.Pf [\-]d Cm \&. No ddd Cm e No \*(Pmdd .Sm on where there is one digit before the decimal-point character @@ -539,7 +539,7 @@ The .Li double argument is rounded and converted to hexadecimal notation in the style .Sm off -.Pf [\-]0xh Cm \&. No hhh Cm p No [\\*(Pm]d +.Pf [\-]0xh Cm \&. No hhh Cm p No [\*(Pm]d .Sm on where the number of digits after the hexadecimal-point character is equal to the precision specification. |