Merge branch 'PHP-5.6'

* PHP-5.6:
  wrap int8_t and int16_t with #ifdef to avoid possible clashes
This commit is contained in:
Anatol Belski 2014-08-07 15:23:03 +02:00
commit 898b5e5d52

View File

@ -66,8 +66,12 @@
// 7.18.1 Integer types
// 7.18.1.1 Exact-width integer types
#ifndef int8_t
typedef __int8 int8_t;
#endif
#ifndef int16_t
typedef __int16 int16_t;
#endif
#ifndef int32_t
typedef __int32 int32_t;
#endif