#ifndef CONFIG_H
#define CONFIG_H

#include <math.h>

/* src/config.h */

/* Define to `long' if <sys/types.h> doesn't define.  */
/* #undef off_t */

/* Define to `unsigned' if <sys/types.h> doesn't define.  */
/* #undef size_t */

/* Define if you have the ANSI C header files.  */
#define STDC_HEADERS 1

/* Set to 1 if the processor is big endian, otherwise set to 0.  */
#define GUESS_BIG_ENDIAN 0
#define CPU_IS_BIG_ENDIAN 0

/* Set to 1 if the processor is little endian, otherwise set to 0.  */
#define GUESS_LITTLE_ENDIAN 1
#define CPU_IS_LITTLE_ENDIAN 1

/* Set to 1 if the processor can read and write Intel x86 32 bit floats.  */
/* Otherwise set it to 0.  */
#define CAN_READ_WRITE_x86_IEEE 1

/* The number of bytes in a double.  */
#define SIZEOF_DOUBLE 8

/* The number of bytes in a float.  */
#define SIZEOF_FLOAT 4

/* The number of bytes in an int.  */
#define SIZEOF_INT 4

/* The number of bytes in a long.  */
#define SIZEOF_LONG 4

/* The number of bytes in a long.  */
#define SIZEOF_LONG_LONG 8
#define loff_t long

/* The number of bytes in a short.  */
#define SIZEOF_SHORT 2

/* The number of bytes in a void*.  */
#define SIZEOF_VOIDP 4

/* Define if you have the fclose function.  */
#define HAVE_FCLOSE 1

/* Define if you have the fopen function.  */
#define HAVE_FOPEN 1

/* Define if you have the fread function.  */
#define HAVE_FREAD 1

/* Define if you have the free function.  */
#define HAVE_FREE 1

/* Define if you have the fseek function.  */
#define HAVE_FSEEK 1

/* Define if you have the ftell function.  */
#define HAVE_FTELL 1

/* Define if you have the fwrite function.  */
#define HAVE_FWRITE 1

/* Define if you have the malloc function.  */
#define HAVE_MALLOC 1

/* Define if you have the <endian.h> header file.  */
/*#define HAVE_ENDIAN_H*/

#define HAVE_FLEXIBLE_ARRAY 1
#define HAVE_LRINT 0
#define HAVE_LRINTF 0
#define HAVE_DECL_S_IRGRP 0

/* Name of package */
#define PACKAGE "libsndfile"

#define PREFER_PORTABLE_SNPRINTF 1
#define HAVE_SNPRINTF 1
#define FORCE_MISSING_SNPRINTF 0
#define HAVE_VSNPRINTF 1

#define SIZEOF_SF_COUNT_T 4

#define CPU_CLIPS_POSITIVE 0
#define CPU_CLIPS_NEGATIVE 0

#define ENABLE_EXPERIMENTAL_CODE 0
#define OS_IS_MACOSX 0
#define PACKAGE_NAME "libsndfile"
#define PACKAGE_VERSION "0.0.22"

#define USE_WINDOWS_API 0
#define HAVE_INTTYPES_H 0
#define SIZEOF_INT64_T 0

/* Version number of package */
#define VERSION "0.0.22"
#endif
