Both POSIX and glibc use 'restrict' in fgetpos(). Let's use it here too. glibc: ============================= fgetpos libio/stdio.h:736: int fgetpos (FILE *restrict stream, fpos_t *restrict pos); Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man3/fseek.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man3/fseek.3 b/man3/fseek.3 index e8ae7d289..e7d6ed464 100644 --- a/man3/fseek.3 +++ b/man3/fseek.3 @@ -51,7 +51,7 @@ fgetpos, fseek, fsetpos, ftell, rewind \- reposition a stream .PP .BI "void rewind(FILE *" stream ); .PP -.BI "int fgetpos(FILE *" stream ", fpos_t *" pos ); +.BI "int fgetpos(FILE *restrict " stream ", fpos_t *restrict " pos ); .BI "int fsetpos(FILE *" stream ", const fpos_t *" pos ); .fi .SH DESCRIPTION -- 2.30.1.721.g45526154a5