diff options
author | Karl Williamson <khw@cpan.org> | 2014-07-11 15:39:02 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-07-12 08:41:14 -0600 |
commit | 4c17e999c9ee0b1efabb2b96c6fbb1c7a2ad2822 (patch) | |
tree | 0c8e66126f5d7143e4cbba7e681804749ea129a1 /util.c | |
parent | 97f4de96034f2588862da2cb99fabf16f8009223 (diff) | |
download | perl-4c17e999c9ee0b1efabb2b96c6fbb1c7a2ad2822.tar.gz |
util.c: Add comment
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3804,6 +3804,9 @@ char * Perl_my_strftime(pTHX_ const char *fmt, int sec, int min, int hour, int mday, int mon, int year, int wday, int yday, int isdst) { #ifdef HAS_STRFTIME + + /* Note that yday and wday effectively are ignored by this function, as mini_mktime() overwrites them */ + char *buf; int buflen; struct tm mytm; |