From 1b7bc5aeea327d47e6f4403121b243e34674c7c5 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 6 Jan 2008 15:50:20 +0000 Subject: 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 --- nuttx/include/sys/types.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nuttx') 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 */ -- cgit v1.2.3