diff options
Diffstat (limited to 'newlib/libc/machine/spu/fsetpos.c')
-rw-r--r-- | newlib/libc/machine/spu/fsetpos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/machine/spu/fsetpos.c b/newlib/libc/machine/spu/fsetpos.c index 1ebbb8f..a92cca5 100644 --- a/newlib/libc/machine/spu/fsetpos.c +++ b/newlib/libc/machine/spu/fsetpos.c @@ -39,7 +39,7 @@ typedef struct { int fp; unsigned int pad0[ 3 ]; - _CONST _fpos_t *pos; + const _fpos_t *pos; } c99_fsetpos_t; #ifndef _REENT_ONLY @@ -47,7 +47,7 @@ typedef struct int _DEFUN (fsetpos, (iop, pos), FILE * iop, - _CONST _fpos_t * pos) + const _fpos_t * pos) { c99_fsetpos_t args; |