libebml_t.h: use C99 integer typedefs instead of the BSD ones

Patch by Ed Schouten <ed@nuxi.nl>.
This commit is contained in:
Moritz Bunkus 2015-11-18 18:35:22 +01:00
parent bb8ad783b5
commit 07d3436342

View File

@ -108,10 +108,10 @@ extern "C" {
typedef int16_t int16; typedef int16_t int16;
typedef int8_t int8; typedef int8_t int8;
typedef int8_t character; typedef int8_t character;
typedef u_int64_t uint64; typedef uint64_t uint64;
typedef u_int32_t uint32; typedef uint32_t uint32;
typedef u_int16_t uint16; typedef uint16_t uint16;
typedef u_int8_t uint8; typedef uint8_t uint8;
#endif /* anything else */ #endif /* anything else */
typedef uint8 binary; typedef uint8 binary;