From 5ab0a920ccbf918b7c010aad32f018a579c4253e Mon Sep 17 00:00:00 2001 From: robin92 Date: Wed, 30 Sep 2015 18:50:29 +0200 Subject: [PATCH] Using own version of timegm when applicable. Some systems come without timegm function in standard library. Taskwarrior already has its own implementation defined in util.c. However, this has never been used as util.h has not been included. --- src/ISO8601.cpp | 1 + src/Nibbler.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ISO8601.cpp b/src/ISO8601.cpp index 6b4b16559..fe885ed1c 100644 --- a/src/ISO8601.cpp +++ b/src/ISO8601.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include diff --git a/src/Nibbler.cpp b/src/Nibbler.cpp index b2d020f28..88d7b9f32 100644 --- a/src/Nibbler.cpp +++ b/src/Nibbler.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #ifdef NIBBLER_FEATURE_DATE #include #endif