Move all definitions of FLAC__U64L to one place.

This commit is contained in:
Erik de Castro Lopo
2012-06-22 14:52:53 +10:00
parent 1294b64996
commit 5b62b770bc
7 changed files with 12 additions and 44 deletions

View File

@@ -68,3 +68,9 @@
#define restrict __restrict
#endif
/* 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