From 82c57498f7f8f27d0d5411ddaf2f473d905b3929 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 23 Apr 2005 14:00:49 +0000 Subject: [PATCH] Variable declarations can't come after statements in C89. p4raw-id: //depot/perl@24309 --- util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util.c b/util.c index db56204..0bff7e7 100644 --- a/util.c +++ b/util.c @@ -3354,8 +3354,9 @@ Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */ { #ifdef HAS_TM_TM_ZONE Time_t now; + struct tm* my_tm; (void)time(&now); - struct tm* my_tm = localtime(&now); + my_tm = localtime(&now); if (my_tm) Copy(my_tm, ptm, 1, struct tm); #endif -- 2.7.4