From 780135281dfdf3f8088f6e4279e84dc86eb94907 Mon Sep 17 00:00:00 2001 From: Nathan Jones Date: Sun, 11 May 2008 19:53:20 -0400 Subject: [PATCH] Fix compile errors with gcc 4.3 --- amount.cc | 1 + datetime.cc | 1 + textual.cc | 1 + 3 files changed, 3 insertions(+) diff --git a/amount.cc b/amount.cc index 4f07b0b0..f9b6fc29 100644 --- a/amount.cc +++ b/amount.cc @@ -4,6 +4,7 @@ #include #include #include +#include #include diff --git a/datetime.cc b/datetime.cc index 040c3046..d766e00c 100644 --- a/datetime.cc +++ b/datetime.cc @@ -7,6 +7,7 @@ #include #include +#include date_t date_t::now(std::time(NULL)); int date_t::current_year = date_t::now.year(); diff --git a/textual.cc b/textual.cc index 44ee354c..4e899eea 100644 --- a/textual.cc +++ b/textual.cc @@ -19,6 +19,7 @@ #include #include #include +#include #ifdef HAVE_REALPATH extern "C" char *realpath(const char *, char resolved_path[]);