ERR: Fixed prototypes of gmtime, localtime, and mktime.

This commit is contained in:
Brad King 2004-01-29 09:00:30 -05:00
parent 9b8ca58538
commit eea07a2f64
1 changed files with 3 additions and 3 deletions

View File

@ -1535,9 +1535,9 @@ yyerrhandle:
#include "getdate.h"
#ifndef WIN32 /* the windows dudes don't need these, does anyone really? */
extern struct tm *gmtime ();
extern struct tm *localtime ();
extern time_t mktime ();
extern struct tm *gmtime (const time_t *timer);
extern struct tm *localtime (const time_t *timer);
extern time_t mktime (struct tm *timeptr);
#endif
/* Month and day table. */