aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio64/fsetpos64.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio64/fsetpos64.c')
-rw-r--r--newlib/libc/stdio64/fsetpos64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio64/fsetpos64.c b/newlib/libc/stdio64/fsetpos64.c
index 9cfc107..f5f6bda 100644
--- a/newlib/libc/stdio64/fsetpos64.c
+++ b/newlib/libc/stdio64/fsetpos64.c
@@ -44,7 +44,7 @@ int
_DEFUN (_fsetpos64_r, (ptr, iop, pos),
struct _reent *ptr,
FILE * iop,
- _CONST _fpos64_t * pos)
+ const _fpos64_t * pos)
{
int x = _fseeko64_r (ptr, iop, (_off64_t)(*pos), SEEK_SET);
@@ -58,7 +58,7 @@ _DEFUN (_fsetpos64_r, (ptr, iop, pos),
int
_DEFUN (fsetpos64, (iop, pos),
FILE * iop,
- _CONST _fpos64_t * pos)
+ const _fpos64_t * pos)
{
return _fsetpos64_r (_REENT, iop, pos);
}