diff options
Diffstat (limited to 'lib/libc/stdio/fopen.3')
-rw-r--r-- | lib/libc/stdio/fopen.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/fopen.3 b/lib/libc/stdio/fopen.3 index 17cfc96..f954d6c 100644 --- a/lib/libc/stdio/fopen.3 +++ b/lib/libc/stdio/fopen.3 @@ -46,11 +46,11 @@ .Sh SYNOPSIS .Fd #include <stdio.h> .Ft FILE * -.Fn fopen "char *path" "char *mode" +.Fn fopen "const char *path" "const char *mode" .Ft FILE * -.Fn fdopen "int fildes" "char *mode" +.Fn fdopen "int fildes" "const char *mode" .Ft FILE * -.Fn freopen "char *path" "char *mode" "FILE *stream" +.Fn freopen "const char *path" "const char *mode" "FILE *stream" .Sh DESCRIPTION The .Fn fopen |