From f9495372801ce4b4dad98ad854203e694c31c1eb Mon Sep 17 00:00:00 2001 From: David Lindes Date: Thu, 24 Oct 2013 20:39:17 -0700 Subject: [PATCH] Add time.h include to ttyload.h Not sure why this ever worked; now works on Raspberry Pi. --- ttyload.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ttyload.h b/ttyload.h index 7dd7756..5f782bf 100644 --- a/ttyload.h +++ b/ttyload.h @@ -8,6 +8,8 @@ * */ +#include /* because we use time_t inside this file */ + #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b))