Module Name: src
Committed By: riastradh
Date: Wed Feb 11 15:19:05 UTC 2015
Modified Files:
src/lib/libc/stdio: fopen.3
Log Message:
Use Pq to avoid space before O_EXCL.
To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 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.29 src/lib/libc/stdio/fopen.3:1.30
--- src/lib/libc/stdio/fopen.3:1.29 Thu Nov 15 03:50:36 2012
+++ src/lib/libc/stdio/fopen.3 Wed Feb 11 15:19:05 2015
@@ -1,4 +1,4 @@
-.\" $NetBSD: fopen.3,v 1.29 2012/11/15 03:50:36 christos Exp $
+.\" $NetBSD: fopen.3,v 1.30 2015/02/11 15:19:05 riastradh Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -120,8 +120,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