/* Contest Arbitrator v0.3.2 by Dmitry Gorokh, UR4MCK
This program is FREEWARE!
POSIX Libc in Mingw missing functions implementation
*/
/* This is only needed on Win32 platform. On native Linux below functions are in Libc */
#ifdef __WIN32__
#ifndef MISSING_H
#define MISSING_H
extern struct tm* __cdecl gmtime_r(const time_t *, struct tm*);
extern char* __cdecl strptime(const char *, const char *, struct tm *);
extern time_t __cdecl timegm(struct tm *tm);
extern char* __cdecl strtok_r(char *s, const char *delim, char **last);
#endif /* MISSING_H */
#endif /* __WIN32__ */