diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-02-13 14:21:30 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-02-13 14:21:30 +0000 |
commit | bd41a17da90bfe76f6f872e6b1d678277f3c7209 (patch) | |
tree | a0a33c327f94c55ab923caf1181058200666fee7 /lib-src | |
parent | 8ee7d7be1df41c8c67bd14c4d7839be0c1d26a93 (diff) | |
download | emacs-bd41a17da90bfe76f6f872e6b1d678277f3c7209.tar.gz |
Include time.h unconditionally.
(main): Use time_t for time variables.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/movemail.c | 4 |
1 files 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 <http://www.gnu.org/licenses/>. */ #include <sys/file.h> #include <stdio.h> #include <errno.h> +#include <time.h> #include <getopt.h> #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 <pwd.h> #include <string.h> -#include <time.h> #define NOTOK (-1) #define OK 0 |