Module Name: src
Committed By: msaitoh
Date: Tue Apr 14 13:30:34 UTC 2015
Modified Files:
src/lib/libc/stdio [netbsd-6]: fopen.3
Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1273):
lib/libc/stdio/fopen.3: revision 1.30
Use Pq to avoid space before O_EXCL.
To generate a diff of this commit:
cvs rdiff -u -r1.27.4.1 -r1.27.4.2 src/lib/libc/stdio/fopen.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/stdio/fopen.3
diff -u src/lib/libc/stdio/fopen.3:1.27.4.1 src/lib/libc/stdio/fopen.3:1.27.4.2
--- src/lib/libc/stdio/fopen.3:1.27.4.1 Wed Nov 28 23:50:57 2012
+++ src/lib/libc/stdio/fopen.3 Tue Apr 14 13:30:33 2015
@@ -1,4 +1,4 @@
-.\" $NetBSD: fopen.3,v 1.27.4.1 2012/11/28 23:50:57 riz Exp $
+.\" $NetBSD: fopen.3,v 1.27.4.2 2015/04/14 13:30:33 msaitoh Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -121,8 +121,8 @@ extension.
.It Sq x
The letter
.Sq x
-in the mode turns on exclusive open mode to the file (
-.Dv O_EXCL )
+in the mode turns on exclusive open mode to the file
+.Pq Dv O_EXCL
which means that the file will not be created if it already exists.
.El
.Pp