nuttx-apps/interpreters/ficl/src/nuttx.h
patacongo 704fd479f8 Ported Ficl to NuttX apps/
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3584 42af7a65-404d-4744-a932-0658087f49c3
2011-05-10 18:18:19 +00:00

19 lines
508 B
C

#include <stdint.h>
typedef int8_t ficlInteger8;
typedef uint8_t ficlUnsigned8;
typedef int16_t ficlInteger16;
typedef uint16_t ficlUnsigned16;
typedef int32_t ficlInteger32;
typedef uint32_t ficlUnsigned32;
typedef intptr_t ficlInteger;
typedef uintptr_t ficlUnsigned;
typedef float ficlFloat;
#define FICL_PLATFORM_BASIC_TYPES (1)
#define FICL_PLATFORM_HAS_2INTEGER (0)
#define FICL_PLATFORM_HAS_FTRUNCATE (0)
#define FICL_PLATFORM_OS "ansi"
#define FICL_PLATFORM_ARCHITECTURE "unknown"