diff options
author | David Robillard <d@drobilla.net> | 2020-08-13 19:48:41 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-14 09:43:38 +0200 |
commit | b52e3f8db950cc8f3397fad00d0fcc8e611004f7 (patch) | |
tree | 59ff12f518308d36befb5b854dd73815ed8b8210 /test/tree_test.c | |
parent | f8b396210aa3247a64c890a69a7d059513797607 (diff) | |
download | zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.tar.gz zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.tar.bz2 zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.zip |
Remove workarounds for ancient versions of MSVC
Diffstat (limited to 'test/tree_test.c')
-rw-r--r-- | test/tree_test.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/tree_test.c b/test/tree_test.c index 3e35fb3..52caede 100644 --- a/test/tree_test.c +++ b/test/tree_test.c @@ -18,18 +18,13 @@ #include "zix/common.h" +#include <inttypes.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <time.h> -#ifdef _MSC_VER -# define PRIdPTR "Id" -#else -# include <inttypes.h> -#endif - static unsigned seed = 1; static int |