diff options
Diffstat (limited to 'newlib/libc/stdio/remove.c')
-rw-r--r-- | newlib/libc/stdio/remove.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/remove.c b/newlib/libc/stdio/remove.c index 810b282..a105828 100644 --- a/newlib/libc/stdio/remove.c +++ b/newlib/libc/stdio/remove.c @@ -59,8 +59,7 @@ Supporting OS subroutine required: <<unlink>>. #include <stdio.h> int -_DEFUN(_remove_r, (ptr, filename), - struct _reent *ptr, +_remove_r (struct _reent *ptr, const char *filename) { if (_unlink_r (ptr, filename) == -1) @@ -72,8 +71,7 @@ _DEFUN(_remove_r, (ptr, filename), #ifndef _REENT_ONLY int -_DEFUN(remove, (filename), - const char *filename) +remove (const char *filename) { return _remove_r (_REENT, filename); } |