summaryrefslogtreecommitdiff
path: root/src/windows/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/config.h')
-rw-r--r--src/windows/config.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/windows/config.h b/src/windows/config.h
index bbc1bb0..24692b5 100644
--- a/src/windows/config.h
+++ b/src/windows/config.h
@@ -271,27 +271,6 @@
# define PERFTOOLS_DLL_DECL_FOR_UNITTESTS __declspec(dllimport)
#endif
-/* printf format code for printing a size_t and ssize_t */
-#ifdef _WIN64
-#define PRIdS "lld"
-#else
-#define PRIdS "d"
-#endif
-
-/* printf format code for printing a size_t and ssize_t */
-#ifdef _WIN64
-#define PRIuS "llu"
-#else
-#define PRIuS "u"
-#endif
-
-/* printf format code for printing a size_t and ssize_t */
-#ifdef _WIN64
-#define PRIxS "llx"
-#else
-#define PRIxS "x"
-#endif
-
/* Mark the systems where we know it's bad if pthreads runs too
early before main (before threads are initialized, presumably). */
#ifdef __FreeBSD__