aboutsummaryrefslogtreecommitdiff
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
commita5b189950ec66b46f019fa3f3de54576f30e04d9 (patch)
treed9467a447f968359265794d97949c0edf7622b38 /nuttx/ChangeLog
parent3ceeb8f9f0486bcebcdb8b6c008f8cfde5920354 (diff)
downloadpx4-firmware-a5b189950ec66b46f019fa3f3de54576f30e04d9.tar.gz
px4-firmware-a5b189950ec66b46f019fa3f3de54576f30e04d9.tar.bz2
px4-firmware-a5b189950ec66b46f019fa3f3de54576f30e04d9.zip
Add support for ferror(), feof(), and clearerr()
git-svn-id: http://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.