mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 22:10:32 +00:00
ERR: Fixed prototypes of gmtime, localtime, and mktime.
This commit is contained in:
parent
9b8ca58538
commit
eea07a2f64
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user