diff options
Diffstat (limited to 'newlib/libc/stdio/fsetpos.c')
-rw-r--r-- | newlib/libc/stdio/fsetpos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fsetpos.c b/newlib/libc/stdio/fsetpos.c index ffc9d79..d765081 100644 --- a/newlib/libc/stdio/fsetpos.c +++ b/newlib/libc/stdio/fsetpos.c @@ -62,7 +62,7 @@ int _DEFUN(_fsetpos_r, (ptr, iop, pos), struct _reent * ptr, FILE * iop, - _CONST _fpos_t * pos) + const _fpos_t * pos) { int x = _fseek_r (ptr, iop, *pos, SEEK_SET); @@ -76,7 +76,7 @@ _DEFUN(_fsetpos_r, (ptr, iop, pos), int _DEFUN(fsetpos, (iop, pos), FILE * iop, - _CONST _fpos_t * pos) + const _fpos_t * pos) { return _fsetpos_r (_REENT, iop, pos); } |