Bug 1080297 - Use native inttypes.h on VS2013. r=glandium

This commit is contained in:
David Major 2014-10-09 21:06:30 +13:00
Родитель b2782ecfb8
Коммит e103fd61cc
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -33,6 +33,10 @@
#error "Use this header only with Microsoft Visual C++ compilers!"
#endif // _MSC_VER ]
#if _MSC_VER >= 1800 // [ VS2013 (VC12) provides inttypes.h
#include <inttypes.h>
#else // _MSC_VER >= 1800 ][
#ifndef _MSC_INTTYPES_H_ // [
#define _MSC_INTTYPES_H_
@ -196,3 +200,4 @@ imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom)
#endif // _MSC_INTTYPES_H_ ]
#endif // _MSC_VER >= 1800 ]