summaryrefslogtreecommitdiff
path: root/time64.c
diff options
context:
space:
mode:
Diffstat (limited to 'time64.c')
-rw-r--r--time64.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/time64.c b/time64.c
index 72a5a971cd..555286b5e0 100644
--- a/time64.c
+++ b/time64.c
@@ -321,7 +321,6 @@ static struct tm * S_localtime_r(const time_t *clock, struct tm *result) {
#ifndef HAS_GMTIME_R
/* Simulate gmtime_r() to the best of our ability */
static struct tm * S_gmtime_r(const time_t *clock, struct tm *result) {
- dTHX; /* in case the following is defined as Perl_my_gmtime(aTHX_ ...) */
const struct tm *static_result = gmtime(clock);
assert(result != NULL);