summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-01 15:00:26 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-01 15:00:26 +0000
commit894c551ac577735dd0fda2805c8b54851a39a5af (patch)
treed9467a447f968359265794d97949c0edf7622b38 /nuttx/ChangeLog
parente46758e2d36e4856cb620687f3c713aafd05ec3c (diff)
downloadnuttx-894c551ac577735dd0fda2805c8b54851a39a5af.tar.gz
nuttx-894c551ac577735dd0fda2805c8b54851a39a5af.tar.bz2
nuttx-894c551ac577735dd0fda2805c8b54851a39a5af.zip
Add support for ferror(), feof(), and clearerr()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5290 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index d4d840243..e14cac1e2 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3541,4 +3541,7 @@
* configs/sim/ostest: Converted to use the mconfig configuration tool.
* configs/sim/cxxtest: New test that will be used to verify the uClibc++
port (eventually).
-
+ * include/nuttx/fs/fs.h, lib/stdio/lib_libfread.c, lib_ferror.c,
+ lib_feof.c, and lib_clearerr.c: Add support for ferror(), feof(),
+ and clearerror(). ferror() support is bogus at the moment (it
+ is equivalent to !feof()); the others should be good.