From 174c50fa758d70731360c69ca2c74b6ca094e313 Mon Sep 17 00:00:00 2001 From: David Fogle Date: Fri, 26 Jul 2013 00:04:35 -0500 Subject: [PATCH] fix build issues by adding include to time.h --- ttyload.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ttyload.h b/ttyload.h index 7dd7756..a170303 100644 --- a/ttyload.h +++ b/ttyload.h @@ -8,6 +8,8 @@ * */ +#include + #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b))