Add time.h include to ttyload.h

Not sure why this ever worked; now works on Raspberry Pi.
This commit is contained in:
David Lindes 2013-10-24 20:39:17 -07:00
parent e9cf5ae0d6
commit f949537280
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@
*
*/
#include <time.h> /* because we use time_t inside this file */
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))