From bd41a17da90bfe76f6f872e6b1d678277f3c7209 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 13 Feb 2009 14:21:30 +0000 Subject: [PATCH] Include time.h unconditionally. (main): Use time_t for time variables. --- lib-src/movemail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib-src/movemail.c b/lib-src/movemail.c index d9443740b4b..70efce881c5 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -60,6 +60,7 @@ along with GNU Emacs. If not, see . */ #include #include #include +#include #include #ifdef HAVE_UNISTD_H @@ -375,7 +376,7 @@ main (argc, argv) int lockcount = 0; int status = 0; #if defined (MAIL_USE_MAILLOCK) && defined (HAVE_TOUCHLOCK) - long touched_lock, now; + time_t touched_lock, now; #endif setuid (getuid ()); @@ -684,7 +685,6 @@ xmalloc (size) #endif #include #include -#include #define NOTOK (-1) #define OK 0 -- 2.39.5