diff options
Diffstat (limited to 'FICS/ficslim.cpp')
-rw-r--r-- | FICS/ficslim.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/FICS/ficslim.cpp b/FICS/ficslim.cpp new file mode 100644 index 0000000..6ea7ffc --- /dev/null +++ b/FICS/ficslim.cpp @@ -0,0 +1,9 @@ +// SPDX-FileCopyrightText: 2024 Markus Uhlin <maxxe@rpblc.net> +// SPDX-License-Identifier: ISC + +#include <limits> + +#include "ficslim.h" + +const time_t g_time_min = std::numeric_limits<time_t>::min(); +const time_t g_time_max = std::numeric_limits<time_t>::max(); |