
/* system time */
long time();

/* for eunuchs things.  made up out of whole cloth by jrd, who knows? */
struct tm
	{
	unsigned char tm_year;
	unsigned char tm_mon;
	unsigned char tm_mday;		/* day in month? */
	unsigned char tm_wday;		/* day in week? */
	unsigned char tm_hour;
	unsigned char tm_min;
	unsigned char tm_sec;
	unsigned char tm_isdst;		/* DST flag? */
	};

/* convert time encoded as long, to struct tm */
extern struct tm * localtime();
