aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man3/fopen.310
1 files changed, 5 insertions, 5 deletions
diff --git a/man3/fopen.3 b/man3/fopen.3
index 20f94bcc5c..ec7ce96227 100644
--- a/man3/fopen.3
+++ b/man3/fopen.3
@@ -48,11 +48,11 @@ fopen, fdopen, freopen \- stream open functions
.nf
.B #include <stdio.h>
.sp
-.BI "FILE *fopen(const char *" path ", const char *" mode );
+.BI "FILE *fopen(const char *" pathname ", const char *" mode );
.BI "FILE *fdopen(int " fd ", const char *" mode );
-.BI "FILE *freopen(const char *" path ", const char *" mode ", FILE *" stream );
+.BI "FILE *freopen(const char *" pathname ", const char *" mode ", FILE *" stream );
.fi
.sp
.in -4n
@@ -66,7 +66,7 @@ _POSIX_C_SOURCE
The
.BR fopen ()
function opens the file whose name is the string pointed to by
-.I path
+.I pathname
and associates a stream with it.
.PP
The argument
@@ -192,7 +192,7 @@ to a shared memory object is undefined.
The
.BR freopen ()
function opens the file whose name is the string pointed to by
-.I path
+.I pathname
and associates the stream pointed to by
.I stream
with it.
@@ -204,7 +204,7 @@ argument is used just as in the
function.
If the
-.I path
+.I pathname
argument is a null pointer,
.BR freopen ()
changes the mode of the stream to that specified in