For fixes for stdint/stdbool build

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2402 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2009-12-21 15:12:13 +00:00
parent 39c5565d0e
commit e758a4c0f1
2 changed files with 8 additions and 4 deletions

View File

@ -41,7 +41,9 @@
****************************************************************************/ ****************************************************************************/
#include <nuttx/config.h> #include <nuttx/config.h>
#ifndef __ASSEMBLY__
# include <stdint.h> # include <stdint.h>
#endif
/**************************************************************************** /****************************************************************************
* Definitions * Definitions

View File

@ -42,8 +42,10 @@
#include <nuttx/config.h> #include <nuttx/config.h>
#ifndef __ASSEMBLY__
# include <stdint.h> # include <stdint.h>
# include <stdbool.h> # include <stdbool.h>
#endif
#include "up_internal.h" #include "up_internal.h"
#include "chip.h" #include "chip.h"