Graphviz 13.0.0~dev.20241220.2304
Loading...
Searching...
No Matches
prisize_t.h
Go to the documentation of this file.
1
3#pragma once
4
19#ifdef __MINGW64__
20// Microsoft’s Visual C Runtime (msvcrt) ships a printf that does not
21// understand "%zu". MSVC itself uses a different printf that does not rely on
22// this, but MinGW uses msvcrt and so cannot handle "%zu".
23#define PRISIZE_T "llu"
24#elif defined(__MINGW32__)
25#define PRISIZE_T "u"
26#else
27#define PRISIZE_T "zu"
28#endif