diff options
Diffstat (limited to 'newlib/libc/stdio/remove.c')
-rw-r--r-- | newlib/libc/stdio/remove.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/remove.c b/newlib/libc/stdio/remove.c index 18c468d..810b282 100644 --- a/newlib/libc/stdio/remove.c +++ b/newlib/libc/stdio/remove.c @@ -61,7 +61,7 @@ Supporting OS subroutine required: <<unlink>>. int _DEFUN(_remove_r, (ptr, filename), struct _reent *ptr, - _CONST char *filename) + const char *filename) { if (_unlink_r (ptr, filename) == -1) return -1; @@ -73,7 +73,7 @@ _DEFUN(_remove_r, (ptr, filename), int _DEFUN(remove, (filename), - _CONST char *filename) + const char *filename) { return _remove_r (_REENT, filename); } |