/* This is a build of CELT */
#define CELT_BUILD

/* Version extra */
#define CELT_EXTRA_VERSION "-1"

/* Version major */
#define CELT_MAJOR_VERSION 0

/* Version micro */
#define CELT_MICRO_VERSION 0

/* Version minor */
#define CELT_MINOR_VERSION 7

/* Complete version string */
#define CELT_VERSION "0.7.0-1"

/* Compile as fixed-point */
/* #undef FIXED_POINT */

/* Compile as floating-point */
#define FLOATING_POINT

/* Make use of alloca */
/* #undef USE_ALLOCA */
#define USE_ALLOCA 1 /* disable this when using SSE */

/* Define to equivalent of C99 restrict keyword, or to nothing if this is not
   supported. Do not define if restrict is supported directly. */
#define restrict /* __restrict */

// Microsoft version of 'inline'
#define inline __inline