Graphviz 13.0.0~dev.20250402.0402
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#else
25#define PRISIZE_T "zu"
26#endif