0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-17 04:50:57 +08:00

Merge pull request #428 from ipechorin/9056c13e1ebbfd7798ddd7b5cfdb9950933c710e

Use <stdint.h> shipped with Visual Studio 2010 and later
This commit is contained in:
Pieter Hintjens 2012-09-26 04:48:02 -07:00
commit 2eb849ccda

View File

@ -27,7 +27,7 @@
#include <inttypes.h>
#elif defined _MSC_VER
#elif defined _MSC_VER && _MSC_VER < 1600
#ifndef int8_t
typedef __int8 int8_t;