summaryrefslogtreecommitdiff
path: root/ucoolib/arch/syscalls.newlib.cc
diff options
context:
space:
mode:
authorNicolas Schodet2013-01-06 00:46:35 +0100
committerNicolas Schodet2019-10-06 23:29:59 +0200
commit93c3f3e22818a1448540048a376c06811eef883f (patch)
tree71213120b3ebe35ce031a108a60a8073c1dc1960 /ucoolib/arch/syscalls.newlib.cc
parent76df6b4b834fbbc695ae419be3943bac85e56123 (diff)
ucoolib/arch: update comment
Diffstat (limited to 'ucoolib/arch/syscalls.newlib.cc')
-rw-r--r--ucoolib/arch/syscalls.newlib.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucoolib/arch/syscalls.newlib.cc b/ucoolib/arch/syscalls.newlib.cc
index 02dd26f..aa9e028 100644
--- a/ucoolib/arch/syscalls.newlib.cc
+++ b/ucoolib/arch/syscalls.newlib.cc
@@ -116,7 +116,7 @@ _open_r (struct _reent *ptr, const char *file, int flags, int mode)
return -1;
}
-/** Read from file, to be improved to read from stream. */
+/** Read from file. */
extern "C" int
_read_r (struct _reent *ptr, int fd, void *buf, size_t cnt)
{
@@ -150,7 +150,7 @@ _read_r (struct _reent *ptr, int fd, void *buf, size_t cnt)
}
}
-/** Write to file, to be improved to write to stream. */
+/** Write to file. */
extern "C" int
_write_r (struct _reent *ptr, int fd, const void *buf, size_t cnt)
{