Go to the documentation of this file.
9#ifndef __CLANG_INTTYPES_H
13#if !defined(_AIX) || !defined(_STD_TYPES_T)
14#define __CLANG_INTTYPES_H
16#if defined(__MVS__) && __has_include_next(<inttypes.h>)
17#include_next <inttypes.h>
20#if defined(_MSC_VER) && _MSC_VER < 1800
21#error MSVC does not have inttypes.h prior to Visual Studio 2013
24#include_next <inttypes.h>
26#if defined(_MSC_VER) && _MSC_VER < 1900
65#define PRIdLEAST32 "d"
68#define PRIiLEAST32 "i"
71#define PRIoLEAST32 "o"
74#define PRIuLEAST32 "u"
77#define PRIxLEAST32 "x"
80#define PRIXLEAST32 "X"
84#define SCNdLEAST32 "d"
87#define SCNiLEAST32 "i"
90#define SCNoLEAST32 "o"
93#define SCNuLEAST32 "u"
96#define SCNxLEAST32 "x"