From c545688788749a58ca153cf721d8bf24d08371ba Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 30 Mar 2016 09:12:09 +0200 Subject: [PATCH] utils: Remove nonsensical typedefs for standard uint types --- src/libstrongswan/utils/utils/types.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/libstrongswan/utils/utils/types.h b/src/libstrongswan/utils/utils/types.h index 0aad69491..45b5043bf 100644 --- a/src/libstrongswan/utils/utils/types.h +++ b/src/libstrongswan/utils/utils/types.h @@ -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 -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