summaryrefslogtreecommitdiff
path: root/time64.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-06-23 07:01:34 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-06-24 16:40:24 -0400
commit23491f1decae17401c5c08e7f8a11e0d30f4f0e2 (patch)
tree4d0e6e8937eed80b3b057f9fc9dbe5365156cad4 /time64.c
parenta312a4316d03f9525260e26cef9e101ca6257958 (diff)
downloadperl-23491f1decae17401c5c08e7f8a11e0d30f4f0e2.tar.gz
Unused contexts found under PERL_GLOBAL_STRUCT.
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);