diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-09-30 16:25:57 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-09-30 16:25:57 +0200 |
commit | 1120d3fa21211d0a507b829d9aeb7bcc3708cc55 (patch) | |
tree | 02cb06ee1d7c13250e1584408c942cca6c81d640 /src | |
parent | 92fdaac5dd3158570f42b55a2c8a39d4cc63dc4e (diff) |
MSVC 2010 has finally grown a <stdint.h>
Diffstat (limited to 'src')
-rw-r--r-- | src/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index 3444cd0..24c7517 100644 --- a/src/common.h +++ b/src/common.h @@ -45,7 +45,7 @@ extern "C" { #endif -#ifdef _MSC_VER +#if defined(_MSC_VER) && _MSC_VER < 1600 typedef __int8 int8_t; typedef unsigned __int8 uint8_t; typedef __int16 int16_t; |