utils: Remove nonsensical typedefs for standard uint types

This commit is contained in:
Tobias Brunner
2016-03-31 09:25:11 +02:00
parent aaa4e478b1
commit c545688788
-13
View File
@@ -43,19 +43,6 @@
# define TRUE true
#endif /* TRUE */
/**
* define some missing fixed width int types on OpenSolaris.
* TODO: since the uintXX_t types are defined by the C99 standard we should
* probably use those anyway
*/
#if defined __sun || defined WIN32
#include <stdint.h>
typedef uint8_t uint8_t;
typedef uint16_t uint16_t;
typedef uint32_t uint32_t;
typedef uint64_t uint64_t;
#endif
#ifdef HAVE_INT128
/**
* 128 bit wide signed integer, if supported