From 07d3436342f7ac8dc9e497bb9a33ed54759b49b1 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 18 Nov 2015 18:35:22 +0100 Subject: [PATCH] libebml_t.h: use C99 integer typedefs instead of the BSD ones Patch by Ed Schouten . --- ebml/c/libebml_t.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ebml/c/libebml_t.h b/ebml/c/libebml_t.h index 6f715c4..6e5085c 100644 --- a/ebml/c/libebml_t.h +++ b/ebml/c/libebml_t.h @@ -108,10 +108,10 @@ extern "C" { typedef int16_t int16; typedef int8_t int8; typedef int8_t character; - typedef u_int64_t uint64; - typedef u_int32_t uint32; - typedef u_int16_t uint16; - typedef u_int8_t uint8; + typedef uint64_t uint64; + typedef uint32_t uint32; + typedef uint16_t uint16; + typedef uint8_t uint8; #endif /* anything else */ typedef uint8 binary;