diff options
Diffstat (limited to 'man3')
| -rw-r--r-- | man3/fopen.3 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/man3/fopen.3 b/man3/fopen.3 index 65ca99f758..d7af3fe96e 100644 --- a/man3/fopen.3 +++ b/man3/fopen.3 @@ -48,9 +48,12 @@ fopen, fdopen, freopen \- stream open functions .nf .B #include <stdio.h> .PP -.BI "FILE *fopen(const char *" pathname ", const char *" mode ); +.BI "FILE *fopen(const char *restrict " pathname \ +", const char *restrict " mode ); .BI "FILE *fdopen(int " fd ", const char *" mode ); -.BI "FILE *freopen(const char *" pathname ", const char *" mode ", FILE *" stream ); +.BI "FILE *freopen(const char *restrict " pathname \ +", const char *restrict " mode , +.BI " FILE *restrict " stream ); .fi .PP .RS -4 |
