From 649e29ccd35e24257e552db7c7de4d375c4aee27 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Mon, 5 May 2014 22:38:26 +0400 Subject: Fixed include guard in cstdio. Broken include guard was preventing cstdio to compile if cctype was included first (and vice versa); as a result, the code that needed both cctype and cstdio was failing to compile. --- nuttx/include/cxx/cstdio | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nuttx/include/cxx/cstdio b/nuttx/include/cxx/cstdio index 6a9620e1a..11348065d 100644 --- a/nuttx/include/cxx/cstdio +++ b/nuttx/include/cxx/cstdio @@ -33,8 +33,8 @@ // //*************************************************************************** -#ifndef __INCLUDE_CXX_CCTYPE -#define __INCLUDE_CXX_CCTYPE +#ifndef __INCLUDE_CXX_CSTDIO +#define __INCLUDE_CXX_CSTDIO //*************************************************************************** // Included Files @@ -93,4 +93,4 @@ namespace std using ::statfs; } -#endif // __INCLUDE_CXX_CCTYPE +#endif // __INCLUDE_CXX_CSTDIO -- cgit v1.2.3