From 0c7c2bce6df19474f1c539dee77cd3b2eb147d26 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Wed, 29 Mar 2017 08:10:59 -0400 Subject: [PATCH] fix travis build --- c/containers/mvfuncs.c | 3 --- c/lib/mlrdatetime.c | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/c/containers/mvfuncs.c b/c/containers/mvfuncs.c index 5a1456643..a2b39487f 100644 --- a/c/containers/mvfuncs.c +++ b/c/containers/mvfuncs.c @@ -12,9 +12,6 @@ // See important notes at the top of mlrval.h. // ================================================================ -// For some Linux distros, in spite of including time.h: -char *strptime(const char *s, const char *format, struct tm *ptm); - typedef int mv_i_nn_comparator_func_t(mv_t* pa, mv_t* pb); typedef int mv_i_cncn_comparator_func_t(const mv_t* pa, const mv_t* pb); diff --git a/c/lib/mlrdatetime.c b/c/lib/mlrdatetime.c index 304d5295c..6c028fa06 100644 --- a/c/lib/mlrdatetime.c +++ b/c/lib/mlrdatetime.c @@ -8,6 +8,9 @@ #include "lib/mlrutil.h" #include "lib/mlrdatetime.h" +// For some Linux distros, in spite of including time.h: +char *strptime(const char *s, const char *format, struct tm *ptm); + // ---------------------------------------------------------------- // seconds since the epoch double get_systime() {