279e8660297a4b55c4f06824a98d1d26ab21646a
[platform/upstream/flac.git] / include / share / compat.h
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2012  Xiph.org Foundation
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * - Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * - Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  *
15  * - Neither the name of the Xiph.org Foundation nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 /* This is the prefered location of all CPP hackery to make $random_compiler
33  * work like something approaching a C99 (or maybe more accurately GNU99)
34  * compiler.
35  *
36  * It is assumed that this header will be included after "config.h".
37  */
38
39 #ifndef FLAC__SHARE__COMPAT_H
40 #define FLAC__SHARE__COMPAT_H
41
42 #if defined _WIN32 && !defined __CYGWIN__
43 /* where MSVC puts unlink() */
44 # include <io.h>
45 #else
46 # include <unistd.h>
47 #endif
48
49 #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
50 #include <sys/types.h> /* for off_t */
51 #if !defined __MINGW32__ /* @@@ [2G limit] */
52 #ifndef fseeko
53 #define fseeko fseek
54 #endif
55 #ifndef ftello
56 #define ftello ftell
57 #endif
58 #else
59 /* MinGW */
60 #if !defined(HAVE_FSEEKO)
61 #  define fseeko fseeko64
62 #  define ftello ftello64
63 #endif
64 #endif
65 #endif
66
67 #if HAVE_INTTYPES_H
68 #define __STDC_FORMAT_MACROS
69 #include <inttypes.h>
70 #endif
71
72 #if defined(_MSC_VER)
73 #define strtoll _strtoi64
74 #define strtoull _strtoui64
75 #endif
76
77 #if defined(_MSC_VER)
78 #if _MSC_VER < 1500
79 /* Visual Studio 2008 has restrict. */
80 #define restrict __restrict
81 #endif
82 #define inline __inline
83 #endif
84
85 /* adjust for compilers that can't understand using LLU suffix for uint64_t literals */
86 #ifdef _MSC_VER
87 #define FLAC__U64L(x) x
88 #else
89 #define FLAC__U64L(x) x##LLU
90 #endif
91
92 #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
93 #define FLAC__STRNCASECMP strnicmp
94 #else
95 #define FLAC__STRNCASECMP strncasecmp
96 #endif
97
98 #if defined _MSC_VER || defined __MINGW32__
99 #include <io.h> /* for _setmode() */
100 #include <fcntl.h> /* for _O_BINARY */
101 #endif
102 #if defined __CYGWIN__ || defined __EMX__
103 #include <io.h> /* for setmode(), O_BINARY */
104 #include <fcntl.h> /* for _O_BINARY */
105 #endif
106
107
108 #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
109 #if defined __BORLANDC__
110 #include <utime.h> /* for utime() */
111 #else
112 #include <sys/utime.h> /* for utime() */
113 #endif
114 #include <io.h> /* for chmod() */
115 #include <sys/types.h> /* for off_t */
116 #else
117 #include <sys/types.h> /* some flavors of BSD (like OS X) require this to get time_t */
118 #include <utime.h> /* for utime() */
119 #include <unistd.h> /* for chown(), unlink() */
120 #endif
121
122 #if defined _MSC_VER
123 #  if _MSC_VER >= 1600
124 /* Visual Studio 2010 has decent C99 support */
125 #    include <stdint.h>
126 #    define PRIu64 "llu"
127 #    define PRId64 "lld"
128 #    define PRIx64 "llx"
129 #  else
130 #    include <limits.h>
131 #    ifndef UINT32_MAX
132 #      define UINT32_MAX _UI32_MAX
133 #    endif
134      typedef unsigned __int64 uint64_t;
135      typedef unsigned __int32 uint32_t;
136      typedef unsigned __int16 uint16_t;
137      typedef unsigned __int8 uint8_t;
138      typedef __int64 int64_t;
139      typedef __int32 int32_t;
140      typedef __int16 int16_t;
141      typedef __int8  int8_t;
142 #    define PRIu64 "I64u"
143 #    define PRId64 "I64d"
144 #    define PRIx64 "I64x"
145 #  endif
146 #endif /* defined _MSC_VER */
147
148 #endif /* FLAC__SHARE__COMPAT_H */