aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio64/fdopen64.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio64/fdopen64.c')
-rw-r--r--newlib/libc/stdio64/fdopen64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdio64/fdopen64.c b/newlib/libc/stdio64/fdopen64.c
index f386583..1a238f7 100644
--- a/newlib/libc/stdio64/fdopen64.c
+++ b/newlib/libc/stdio64/fdopen64.c
@@ -36,8 +36,8 @@ extern int __sflags ();
FILE *
_DEFUN (_fdopen64_r, (ptr, fd, mode),
- struct _reent *ptr _AND
- int fd _AND
+ struct _reent *ptr,
+ int fd,
_CONST char *mode)
{
register FILE *fp;
@@ -109,7 +109,7 @@ _DEFUN (_fdopen64_r, (ptr, fd, mode),
FILE *
_DEFUN (fdopen64, (fd, mode),
- int fd _AND
+ int fd,
_CONST char *mode)
{
return _fdopen64_r (_REENT, fd, mode);