From 9946b1f49a95412b27e6987fbb34a9011e6cad67 Mon Sep 17 00:00:00 2001 From: Kevin Lyda <kevin@ie.suberic.net> Date: Fri, 13 Oct 2017 08:52:57 +0100 Subject: [PATCH] Changes to build on Linux. --- Makefile | 2 +- cube-test.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index bc18811..083fd10 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # cube-test: cube-test.c - cc -Wall -o cube-test cube-test.c + $(CC) -Wall -o $@ $< # vim:ft=make diff --git a/cube-test.c b/cube-test.c index 71a6c2e..a7d08df 100644 --- a/cube-test.c +++ b/cube-test.c @@ -30,17 +30,17 @@ read_number() { return atoi(buf); } -typedef struct timer_struct { +typedef struct interval_timer_struct { struct timeval then; -} timer_t; +} interval_timer_t; void -start_timer(timer_t *timer) { +start_timer(interval_timer_t *timer) { gettimeofday(&timer->then, NULL); } long int -end_timer(timer_t *timer) { +end_timer(interval_timer_t *timer) { struct timeval now; long int delta; @@ -68,7 +68,7 @@ humanize_usec(long int usec) { int main(int argc, char *argv[]) { int guess, number, iterations = 0, correct = 0; - timer_t timer; + interval_timer_t timer; long int delta, delta_total = 0; srand(time(NULL)); -- GitLab