Changeset: 7e9c51b60b59 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=7e9c51b60b59 Modified Files: NT/monetdb_config.h.in Branch: gdk_tracer Log Message:
rewrite gmtime_r into gmtime_s diffs (11 lines): diff --git a/NT/monetdb_config.h.in b/NT/monetdb_config.h.in --- a/NT/monetdb_config.h.in +++ b/NT/monetdb_config.h.in @@ -282,6 +282,7 @@ #define HAVE_LOCALTIME_R 1 /* there is something very similar to localtime_r on Windows: */ #define localtime_r(tp,tm) localtime_s(tm,tp) +#define gmtime_r(tp,tm) gmtime_s(tm,tp) /* Define to 1 if you have the `lockf' function. */ /* #undef HAVE_LOCKF */ _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
