From: Chong Yidong Date: Fri, 13 Feb 2009 14:21:30 +0000 (+0000) Subject: Include time.h unconditionally. X-Git-Tag: emacs-pretest-23.0.91~236 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd41a17da90bfe76f6f872e6b1d678277f3c7209;p=emacs.git Include time.h unconditionally. (main): Use time_t for time variables. --- 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