diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-04-29 09:00:07 +0000 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-04-29 09:00:07 +0000 |
commit | 4df24d3be61d9956b7fe7f725bfc7132d73ca093 (patch) | |
tree | dea0aeb7d29301bc026118fdd3e76b7da9eb2567 | |
parent | 634a7d0b4a8c44b6c8559a7e58ec213cd2842a2a (diff) | |
download | emacs-4df24d3be61d9956b7fe7f725bfc7132d73ca093.tar.gz |
Don't include time.h. Include sysselect.h after systime.h.
-rw-r--r-- | src/mac.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mac.c b/src/mac.c index 0a1b94eb2c5..e9930ada151 100644 --- a/src/mac.c +++ b/src/mac.c @@ -24,12 +24,11 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> #include <errno.h> -#include <time.h> #include "lisp.h" #include "process.h" -#include "sysselect.h" #include "systime.h" +#include "sysselect.h" #include "blockinput.h" #include "macterm.h" |