diff options
Diffstat (limited to 'man/man3/unlocked_stdio.3')
-rw-r--r-- | man/man3/unlocked_stdio.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/man3/unlocked_stdio.3 b/man/man3/unlocked_stdio.3 index ad1c120775..2aaa5133bd 100644 --- a/man/man3/unlocked_stdio.3 +++ b/man/man3/unlocked_stdio.3 @@ -28,16 +28,16 @@ Standard C library .BI "int fgetc_unlocked(FILE *" stream ); .BI "int fputc_unlocked(int " c ", FILE *" stream ); .P -.BI "size_t fread_unlocked(size_t " size ", size_t " n ; +.BR "size_t fread_unlocked(" "size_t size, size_t n;" .BI " void " ptr "[restrict " size " * " n ], .BI " size_t " size ", size_t " n , .BI " FILE *restrict " stream ); -.BI "size_t fwrite_unlocked(size_t " size ", size_t " n ; +.BR "size_t fwrite_unlocked(" "size_t size, size_t n;" .BI " const void " ptr "[restrict " size " * " n ], .BI " size_t " size ", size_t " n , .BI " FILE *restrict " stream ); .P -.BI "char *fgets_unlocked(int " n ; +.BR "char *fgets_unlocked(" "int n;" .BI " char " s "[restrict " n "], int " n \ ", FILE *restrict " stream ); .BI "int fputs_unlocked(const char *restrict " s ", FILE *restrict " stream ); @@ -52,7 +52,7 @@ Standard C library .BI "wint_t putwc_unlocked(wchar_t " wc ", FILE *" stream ); .BI "wint_t putwchar_unlocked(wchar_t " wc ); .P -.BI "wchar_t *fgetws_unlocked(int " n ; +.BR "wchar_t *fgetws_unlocked(" "int n;" .BI " wchar_t " ws "[restrict " n "], int " n , .BI " FILE *restrict " stream ); .BI "int fputws_unlocked(const wchar_t *restrict " ws , |