From 700e9b41253e04ac3a0a16edfa1f41a2d4084462 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 14 Sep 2015 14:53:57 +0200 Subject: Use standard headers instead of defining our own ptrdiff_t and uintptr_t. --- test/regression/alias.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/regression/alias.c') diff --git a/test/regression/alias.c b/test/regression/alias.c index a38e6dfd..9887ae2b 100644 --- a/test/regression/alias.c +++ b/test/regression/alias.c @@ -1,8 +1,8 @@ /* Testing the alias analysis on ill-defined codes where it should remain conservative. */ -typedef unsigned int uintptr_t; -typedef signed int ptrdiff_t; +#include +#include /* For testing with GCC */ #define NOINLINE __attribute__((noinline)) -- cgit