From 8e813e8811094328e0757359f17b671e9bbf281a Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 15 Dec 2009 16:58:10 +0000 Subject: [PATCH] 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@2348 42af7a65-404d-4744-a932-0658087f49c3 --- libxx/libxx_new.cxx | 2 +- libxx/libxx_newa.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libxx/libxx_new.cxx b/libxx/libxx_new.cxx index fd088333ac..49caf74f38 100755 --- a/libxx/libxx_new.cxx +++ b/libxx/libxx_new.cxx @@ -60,7 +60,7 @@ // NOTE: // This should take a type of size_t, which for ARM GCC is unsigned long. // but size_t may actually be a different different type, in sys/include.h, -// it is typed as uint32. Need to REVISIT this. +// it is typed as uint32_t. Need to REVISIT this. // //*************************************************************************** diff --git a/libxx/libxx_newa.cxx b/libxx/libxx_newa.cxx index d0e5bd10b4..e8c214d4d1 100755 --- a/libxx/libxx_newa.cxx +++ b/libxx/libxx_newa.cxx @@ -60,7 +60,7 @@ // NOTE: // This should take a type of size_t, which for ARM GCC is unsigned long. // but size_t may actually be a different different type, in sys/include.h, -// it is typed as uint32. Need to REVISIT this. +// it is typed as uint32_t. Need to REVISIT this. // //***************************************************************************