From: Michael G Schwern <schwern@pobox.com>
Date: Sat, 13 Sep 2008 12:58:09 +0000 (-0700)
Subject: Remove all of localtime64's own includes. Perl's already done that and we're loading... 
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=767e26d7c823c3c5c43ef254adba671cd0fb1a66;p=p5sagit%2Fp5-mst-13.2.git

Remove all of localtime64's own includes. Perl's already done that and we're loading assert.h, accidentally turning on asserts when perl.h wants them off.
---

diff --git a/localtime64.c b/localtime64.c
index 4e579a4..738db89 100644
--- a/localtime64.c
+++ b/localtime64.c
@@ -39,13 +39,6 @@ gmtime64_r() is a 64-bit equivalent of gmtime_r().
 
 */
 
-#include <assert.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <time.h>
-#include <errno.h>
-#include "localtime64.h"
-
 static const int days_in_month[2][12] = {
     {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
     {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},