1 /* cl_ulong is always a 64bit integer, so in a few places
2 we want to use its shadow type uint64_t, and print the
3 values using PRIu64. We'll similarly define one for
4 size_t, to make support for non-standard/older compiler
13 # include <stddef.h> // size_t
14 # define PRIu64 "I64u"
15 # define PRIX64 "I64x"
19 # define __STDC_FORMAT_MACROS
20 # include <inttypes.h>