summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorAliaksey Kandratsenka <alkondratenko@gmail.com>2021-02-14 14:04:10 -0800
committerAliaksey Kandratsenka <alkondratenko@gmail.com>2021-02-14 15:44:14 -0800
commit0d6f32b9cef7ee044e55a746e7c76db62d23cd86 (patch)
treec805a20502e080889752bd8d9e5021ec9239aa92 /cmake
parent0c11d35f4a2a0f5f42ee684a3f5b27cbab8abae2 (diff)
downloadgperftools-0d6f32b9cef7ee044e55a746e7c76db62d23cd86.tar.gz
use standard way to print size_t-sized ints
I.e. just use zu/zd/zx instead of finding out right size and defining PRI{u,x,d}S defines. Compilers have long caught up to this part of standard.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/config.h.in9
1 files changed, 0 insertions, 9 deletions
diff --git a/cmake/config.h.in b/cmake/config.h.in
index c5f0a1f..baaa5b0 100644
--- a/cmake/config.h.in
+++ b/cmake/config.h.in
@@ -280,15 +280,6 @@
#endif
#endif
-/* printf format code for printing a size_t and ssize_t */
-#define PRIdS "zd"
-
-/* printf format code for printing a size_t and ssize_t */
-#define PRIuS "zu"
-
-/* printf format code for printing a size_t and ssize_t */
-#define PRIxS "zx"
-
/* Mark the systems where we know it's bad if pthreads runs too
early before main (before threads are initialized, presumably). */
#ifdef __FreeBSD__