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.
This commit is contained in:
robin92 2015-09-30 18:50:29 +02:00 committed by Paul Beckingham
parent 830a8c6ec8
commit 5ab0a920cc
2 changed files with 2 additions and 0 deletions

View file

@ -28,6 +28,7 @@
#include <sstream>
#include <stdlib.h>
#include <Lexer.h>
#include <util.h>
#include <ISO8601.h>
#include <Date.h>

View file

@ -31,6 +31,7 @@
#include <inttypes.h>
#include <Lexer.h>
#include <Nibbler.h>
#include <util.h>
#ifdef NIBBLER_FEATURE_DATE
#include <Date.h>
#endif