summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2013-10-24 01:21:33 +0000
committerHans-Peter Nilsson <hp@axis.com>2013-10-24 01:21:33 +0000
commit72a386373e0fb620e943064f63f9e4d142c933d7 (patch)
treec83e72f3ba972b9a508df97fd57a683a52036945
parent17b0a565b0930da0791926edfdd4310934521288 (diff)
downloadcygnal-72a386373e0fb620e943064f63f9e4d142c933d7.tar.gz
cygnal-72a386373e0fb620e943064f63f9e4d142c933d7.tar.bz2
cygnal-72a386373e0fb620e943064f63f9e4d142c933d7.zip
* libc/include/stdio.h [!__LARGE64_FILES] (funopen): Fix typo
in last change.
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/include/stdio.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 1d3ce7444..0c89f3076 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-24 Hans-Peter Nilsson <hp@axis.com>
+
+ * libc/include/stdio.h [!__LARGE64_FILES] (funopen): Fix typo
+ in last change.
+
2013-10-23 Corinna Vinschen <vinschen@redhat.com>
* libc/include/stdio.h (funopen): Change prototype of
diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h
index 20064d17e..281b587de 100644
--- a/newlib/libc/include/stdio.h
+++ b/newlib/libc/include/stdio.h
@@ -533,7 +533,7 @@ FILE *_EXFUN(_funopen_r,(struct _reent *, const _PTR __cookie,
FILE *_EXFUN(funopen,(const _PTR __cookie,
int (*__readfn)(_PTR __cookie, char *__buf,
_READ_WRITE_BUFSIZE_TYPE __n),
- int (*__writefn)(_PTR __cookie, const char *__buf
+ int (*__writefn)(_PTR __cookie, const char *__buf,
_READ_WRITE_BUFSIZE_TYPE __n),
fpos_t (*__seekfn)(_PTR __cookie, fpos_t __off, int __whence),
int (*__closefn)(_PTR __cookie)));