diff options
| author | Dan Nicolaescu | 2005-09-30 22:38:16 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2005-09-30 22:38:16 +0000 |
| commit | b17f937955a92bd8416821ec847d859bc9c3de85 (patch) | |
| tree | 0db63a852865dcd131b183c0de7504e228fd89f3 /src | |
| parent | 3bd1644e7567da45012a46c64321147a8afad29e (diff) | |
| download | emacs-b17f937955a92bd8416821ec847d859bc9c3de85.tar.gz emacs-b17f937955a92bd8416821ec847d859bc9c3de85.zip | |
Move systime.h include after lisp.h.
(make_time): Move prototype from systime.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 56b6ac71fb4..c3982b10cea 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -37,6 +37,8 @@ Boston, MA 02110-1301, USA. */ | |||
| 37 | #include <sys/utsname.h> | 37 | #include <sys/utsname.h> |
| 38 | #endif | 38 | #endif |
| 39 | 39 | ||
| 40 | #include "lisp.h" | ||
| 41 | |||
| 40 | /* systime.h includes <sys/time.h> which, on some systems, is required | 42 | /* systime.h includes <sys/time.h> which, on some systems, is required |
| 41 | for <sys/resource.h>; thus systime.h must be included before | 43 | for <sys/resource.h>; thus systime.h must be included before |
| 42 | <sys/resource.h> */ | 44 | <sys/resource.h> */ |
| @@ -48,7 +50,6 @@ Boston, MA 02110-1301, USA. */ | |||
| 48 | 50 | ||
| 49 | #include <ctype.h> | 51 | #include <ctype.h> |
| 50 | 52 | ||
| 51 | #include "lisp.h" | ||
| 52 | #include "intervals.h" | 53 | #include "intervals.h" |
| 53 | #include "buffer.h" | 54 | #include "buffer.h" |
| 54 | #include "charset.h" | 55 | #include "charset.h" |
| @@ -71,7 +72,6 @@ Boston, MA 02110-1301, USA. */ | |||
| 71 | extern char **environ; | 72 | extern char **environ; |
| 72 | #endif | 73 | #endif |
| 73 | 74 | ||
| 74 | extern Lisp_Object make_time P_ ((time_t)); | ||
| 75 | extern size_t emacs_strftimeu P_ ((char *, size_t, const char *, | 75 | extern size_t emacs_strftimeu P_ ((char *, size_t, const char *, |
| 76 | const struct tm *, int)); | 76 | const struct tm *, int)); |
| 77 | static int tm_diff P_ ((struct tm *, struct tm *)); | 77 | static int tm_diff P_ ((struct tm *, struct tm *)); |