diff --git a/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h b/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h index d6691b7..69babb6 100644 --- a/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h +++ b/DependenciesSource/libogg-1.2.2/include/ogg/os_types.h @@ -138,6 +138,16 @@ typedef unsigned int ogg_uint32_t; typedef long long int ogg_int64_t; +#elif defined(__linux__) + + /* Linux GCC or clang */ +# include + typedef int16_t ogg_int16_t; + typedef uint16_t ogg_uint16_t; + typedef int32_t ogg_int32_t; + typedef uint32_t ogg_uint32_t; + typedef int64_t ogg_int64_t; + typedef uint64_t ogg_uint64_t; #else # include