summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-16 20:30:06 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-16 20:30:06 +0000
commit692fdecda1d50a2d5ca3bd8338074ece4c8eee38 (patch)
tree7328ec06342bec70ae9c7481251285b78ac38338 /nuttx/ChangeLog
parent891f61e86fcc0a4c42f25432016762b6aafb287e (diff)
downloadnuttx-692fdecda1d50a2d5ca3bd8338074ece4c8eee38.tar.gz
nuttx-692fdecda1d50a2d5ca3bd8338074ece4c8eee38.tar.bz2
nuttx-692fdecda1d50a2d5ca3bd8338074ece4c8eee38.zip
Changing NuttX fixed size type names to C99 standard names -- things will be broken for awhile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2360 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 3b9367f36..e3e65a494 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -997,4 +997,8 @@
int in the architecture; Removed non-standard type STATUS
* include/ - Added header files stdint.h, stdbool.h, cxx/cstdint, and
cxx/cstdbool
+ * Changed ALL references to non-standard fixed-size types (like uint32,
+ ubyte, etc.) to standard types (like uint32_t, uint8_t, etc.) from
+ stdint.h. Use type bool and {true, false} from stdbool. This effected
+ most of the files in the system!