diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2012-06-22 14:52:53 +1000 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2012-06-22 14:52:53 +1000 |
commit | 5b62b770bc79d73138a59e74dc6db651cddc5f36 (patch) | |
tree | bb875235695ab17494ae5d6f3c0b0e3f57ce8d14 /src/libFLAC/format.c | |
parent | 1294b6499609e377573d6a9d4841769cb5b2a10d (diff) | |
download | flac-5b62b770bc79d73138a59e74dc6db651cddc5f36.tar.gz |
Move all definitions of FLAC__U64L to one place.
Diffstat (limited to 'src/libFLAC/format.c')
-rw-r--r-- | src/libFLAC/format.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/libFLAC/format.c b/src/libFLAC/format.c index d7965479..ad5fcd06 100644 --- a/src/libFLAC/format.c +++ b/src/libFLAC/format.c @@ -38,16 +38,10 @@ #include <string.h> /* for memset() */ #include "FLAC/assert.h" #include "FLAC/format.h" +#include "share/compat.h" #include "private/format.h" #include "private/macros.h" -/* adjust for compilers that can't understand using LLU suffix for uint64_t literals */ -#ifdef _MSC_VER -#define FLAC__U64L(x) x -#else -#define FLAC__U64L(x) x##LLU -#endif - /* VERSION should come from configure */ FLAC_API const char *FLAC__VERSION_STRING = VERSION; |