aboutsummaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-13 14:02:06 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-13 14:02:06 +0000
commitd5c4c4da8d1612ef8e24f7cd99bc3200c80e002d (patch)
tree2626b3a8a6191571a5b2c2c73fe54bdf69b86ba9 /nuttx/include
parent18669722d84491f37066f9c6798c74852598212a (diff)
downloadpx4-firmware-d5c4c4da8d1612ef8e24f7cd99bc3200c80e002d.tar.gz
px4-firmware-d5c4c4da8d1612ef8e24f7cd99bc3200c80e002d.tar.bz2
px4-firmware-d5c4c4da8d1612ef8e24f7cd99bc3200c80e002d.zip
Fix bad AVR C++ include paths; remove stray typo from ctypes.h
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5024 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/ctype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/ctype.h b/nuttx/include/ctype.h
index 6959a44b1..22b325eef 100644
--- a/nuttx/include/ctype.h
+++ b/nuttx/include/ctype.h
@@ -72,7 +72,7 @@
*
****************************************************************************/
-#define isascii(c) ((c) >= 0 && (c) <= 0x7f);
+#define isascii(c) ((c) >= 0 && (c) <= 0x7f)
/****************************************************************************
* Name: isprint