diff options
| author | Richard M. Stallman | 1994-06-05 18:29:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-05 18:29:46 +0000 |
| commit | 6cbd1643c9e247a336633df618999bb0904f4880 (patch) | |
| tree | 6730bf772c1d2f0894af00ca769138b83b7c3274 /src | |
| parent | 0c2611c5b9cbf5a5ddcfac7ab8a2fa7cfb4edb47 (diff) | |
| download | emacs-6cbd1643c9e247a336633df618999bb0904f4880.tar.gz emacs-6cbd1643c9e247a336633df618999bb0904f4880.zip | |
Include systime.h after xterm.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 55292196bf6..f5234b6fa67 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -39,12 +39,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 39 | #include "intervals.h" | 39 | #include "intervals.h" |
| 40 | 40 | ||
| 41 | #include "systty.h" | 41 | #include "systty.h" |
| 42 | #include "systime.h" | ||
| 43 | 42 | ||
| 44 | #ifdef HAVE_X_WINDOWS | 43 | #ifdef HAVE_X_WINDOWS |
| 45 | #include "xterm.h" | 44 | #include "xterm.h" |
| 46 | #endif /* HAVE_X_WINDOWS */ | 45 | #endif /* HAVE_X_WINDOWS */ |
| 47 | 46 | ||
| 47 | /* Include systime.h after xterm.h to avoid double inclusion of time.h. */ | ||
| 48 | #include "systime.h" | ||
| 49 | |||
| 48 | #include <errno.h> | 50 | #include <errno.h> |
| 49 | 51 | ||
| 50 | #define max(a, b) ((a) > (b) ? (a) : (b)) | 52 | #define max(a, b) ((a) > (b) ? (a) : (b)) |