summaryrefslogtreecommitdiff
path: root/nuttx/include/inttypes.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-12 16:36:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-07-12 16:36:45 +0000
commitec5c538c2d9b423c79387a09c60457e918e22703 (patch)
tree986a5643cf00efbea8f795c17cc3466982031247 /nuttx/include/inttypes.h
parente6f4d56ce41c0e258632e9525b2e62dd17fe8273 (diff)
downloadnuttx-ec5c538c2d9b423c79387a09c60457e918e22703.tar.gz
nuttx-ec5c538c2d9b423c79387a09c60457e918e22703.tar.bz2
nuttx-ec5c538c2d9b423c79387a09c60457e918e22703.zip
Add wchar_t type; Add LPC17xx CAN driver from Lzyy; Fix serial bug reported by Lzyy
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3775 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/inttypes.h')
-rw-r--r--nuttx/include/inttypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/include/inttypes.h b/nuttx/include/inttypes.h
index 77dfaa4e6..f305d187d 100644
--- a/nuttx/include/inttypes.h
+++ b/nuttx/include/inttypes.h
@@ -40,6 +40,8 @@
* Included Files
****************************************************************************/
+#include <stddef.h> /* for wchar_t */
+
/* Notes from www.opengroup.org:
*
* "The <inttypes.h> header shall include the <stdint.h> header."
@@ -177,10 +179,8 @@ EXTERN imaxdiv_t imaxdiv(intmax_t, intmax_t);
EXTERN intmax_t strtoimax(const char *, char **, int);
EXTERN uintmax_t strtoumax(const char *, char **, int);
-#if 0 /* No wchar_t */
EXTERN intmax_t wcstoimax(const wchar_t *, wchar_t **, int);
EXTERN uintmax_t wcstoumax(const wchar_t *, wchar_t **, int);
-#endif
#undef EXTERN
#ifdef __cplusplus