From e99d59ff0bff349ef205cef1076e0354c8130680 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 20 May 2005 11:46:10 -0700 Subject: sparse cleanup Fix various things that sparse complains about: - use NULL instead of 0 - make sure we declare everything properly, or mark it static - use proper function declarations ("fn(void)" instead of "fn()") Sparse is always right. --- date.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'date.c') diff --git a/date.c b/date.c index b0b83c9da2..1f366a67f8 100644 --- a/date.c +++ b/date.c @@ -10,6 +10,8 @@ #include #include +#include "cache.h" + static time_t my_mktime(struct tm *tm) { static const int mdays[] = { -- cgit v1.2.3