blob: 015f85de17373837765001d3213d5207a491f7f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/*
| $Id: s.config.h 1.2 04/02/10 02:16:55-05:00 michael@andromeda.68k.org $
| config.h for Win32, Copyright (c) 2001, Chris Wolf <af@starclass.com>
| This file is specifically for the MSVC environment, it has not
| been tested using Cygwin GCC, yet.
*/
#if !defined(__HAVE_AF_CONFIG_H__) && defined(_MSC_VER)
#define __HAVE_AF_CONFIG_H__
#include <float.h>
#define isnan _isnan
#define vsnprintf _vsnprintf
#define snprintf _snprintf
typedef long ssize_t;
typedef char int8_t;
typedef unsigned char u_int8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
typedef long int32_t;
typedef unsigned long u_int32_t;
/* Define to empty if the keyword does not work. */
/* #undef const */
/* 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
/* Define if your processor stores words with the most significant
byte first (like Motorola and SPARC, unlike Intel and VAX). */
/* #undef WORDS_BIGENDIAN */
/* The number of bytes in a long. */
#define SIZEOF_LONG 4
/* The number of bytes in a off_t. */
#define SIZEOF_OFF_T 4
/* The number of bytes in a size_t. */
#define SIZEOF_SIZE_T 4
/* Define if you have the strdup function. */
#define HAVE_STRDUP 1
/* Define if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define if you have the <unistd.h> header file. */
/* #define HAVE_UNISTD_H 1 */
/* Define if you have the m library (-lm). */
#define HAVE_LIBM 1
/* Name of package */
#define PACKAGE "audiofile"
/* Version number of package */
#define VERSION "0.2.6"
#endif /* __HAVE_AF_CONFIG_H__ */
|