1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00:00

Include time.h unconditionally.

(main): Use time_t for time variables.
This commit is contained in:
Chong Yidong 2009-02-13 14:21:30 +00:00
parent 8ee7d7be1d
commit bd41a17da9

View File

@ -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