diff options
Diffstat (limited to 'newlib/libc/stdio/fdopen.c')
-rw-r--r-- | newlib/libc/stdio/fdopen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fdopen.c b/newlib/libc/stdio/fdopen.c index 7dda3c3..82b7a9b 100644 --- a/newlib/libc/stdio/fdopen.c +++ b/newlib/libc/stdio/fdopen.c @@ -56,7 +56,7 @@ FILE * _DEFUN(_fdopen_r, (ptr, fd, mode), struct _reent *ptr, int fd, - _CONST char *mode) + const char *mode) { register FILE *fp; int flags, oflags; @@ -125,7 +125,7 @@ _DEFUN(_fdopen_r, (ptr, fd, mode), FILE * _DEFUN(fdopen, (fd, mode), int fd, - _CONST char *mode) + const char *mode) { return _fdopen_r (_REENT, fd, mode); } |