aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2016-03-30 09:12:09 +0200
committerTobias Brunner <tobias@strongswan.org>2016-03-31 09:25:11 +0200
commitc545688788749a58ca153cf721d8bf24d08371ba (patch)
tree5f63bb95146d459fa83068c8bae7c40ed0e93679 /src
parentaaa4e478b1894ae75e5bb3e9eb7cfec51952a66b (diff)
downloadstrongswan-c545688788749a58ca153cf721d8bf24d08371ba.tar.bz2
strongswan-c545688788749a58ca153cf721d8bf24d08371ba.tar.xz
utils: Remove nonsensical typedefs for standard uint types
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/utils/utils/types.h13
1 files changed, 0 insertions, 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 <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