Add ::localtime_r implementation for mingw

This commit is contained in:
Paul Davis 2013-07-11 15:00:22 -04:00
parent 5d125e1eae
commit c43ff1113d
3 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#ifndef PBD_LOCALTIME_R
#define PBD_LOCALTIME_R
#include <time.h>
extern struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
#endif