diff options
Diffstat (limited to 'newlib/libc/stdio/rename.c')
-rw-r--r-- | newlib/libc/stdio/rename.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/rename.c b/newlib/libc/stdio/rename.c index a2b0d41..a327708 100644 --- a/newlib/libc/stdio/rename.c +++ b/newlib/libc/stdio/rename.c @@ -55,8 +55,8 @@ Supporting OS subroutines required: <<link>>, <<unlink>>, or <<rename>>. int _DEFUN(rename, (old, new), - _CONST char *old, - _CONST char *new) + const char *old, + const char *new) { return _rename_r (_REENT, old, new); } |