From d8bef07031a1928e7e071c47f3d3702d4d9a4ca3 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Wed, 30 Jan 2019 16:08:49 +0100 Subject: remove preprocessor directives about SIZE_TYPE, now useless (long is now 8 bytes like in gcc) --- test/monniaux/clock.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/monniaux/clock.h') diff --git a/test/monniaux/clock.h b/test/monniaux/clock.h index 768985b4..b5ee65a4 100644 --- a/test/monniaux/clock.h +++ b/test/monniaux/clock.h @@ -1,5 +1,6 @@ -typedef unsigned long long cycle_t; +typedef unsigned long cycle_t; void clock_stop(void); void clock_start(void); cycle_t get_total_clock(void); +void print_total_clock(void); -- cgit