Modify standard header files to work with RGMP

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3596 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2011-05-12 18:07:05 +00:00
parent fff9db3c57
commit cd5cb04547
10 changed files with 492 additions and 8 deletions
+7 -3
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* include/stdbool.h
*
* Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
@@ -41,9 +41,12 @@
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/compiler.h>
#include <stdint.h>
#ifdef CONFIG_ARCH_STDBOOL_H
# include <arch/stdbool.h>
#else
# include <nuttx/compiler.h>
# include <stdint.h>
/****************************************************************************
* Pre-processor Definitions
@@ -82,4 +85,5 @@
typedef uint8_t _Bool8;
#endif /* CONFIG_ARCH_STDBOOL_H */
#endif /* __INCLUDE_STDBOOL_H */