summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-06 15:50:20 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-06 15:50:20 +0000
commit1b7bc5aeea327d47e6f4403121b243e34674c7c5 (patch)
tree56f9c39285d6119213f99f68b1e6f9405b4cef67
parent12b4f1cc8bca7de8373c4949767cd8ecf29a89d8 (diff)
downloadnuttx-1b7bc5aeea327d47e6f4403121b243e34674c7c5.tar.gz
nuttx-1b7bc5aeea327d47e6f4403121b243e34674c7c5.tar.bz2
nuttx-1b7bc5aeea327d47e6f4403121b243e34674c7c5.zip
Add float types needed by pcode runtime
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@516 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/include/sys/types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/nuttx/include/sys/types.h b/nuttx/include/sys/types.h
index 2fd53e41d..99736e41e 100644
--- a/nuttx/include/sys/types.h
+++ b/nuttx/include/sys/types.h
@@ -96,10 +96,13 @@
****************************************************************************/
#ifndef __ASSEMBLY__
+typedef float float32;
#ifndef CONFIG_HAVE_DOUBLE
typedef float double_t;
+typedef float float64;
#else
typedef double double_t;
+typedef double float64;
#endif
/* Misc. scalar types */