aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan Nicolaescu2005-09-30 22:38:16 +0000
committerDan Nicolaescu2005-09-30 22:38:16 +0000
commitb17f937955a92bd8416821ec847d859bc9c3de85 (patch)
tree0db63a852865dcd131b183c0de7504e228fd89f3 /src
parent3bd1644e7567da45012a46c64321147a8afad29e (diff)
downloademacs-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.c4
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. */
71extern char **environ; 72extern char **environ;
72#endif 73#endif
73 74
74extern Lisp_Object make_time P_ ((time_t));
75extern size_t emacs_strftimeu P_ ((char *, size_t, const char *, 75extern size_t emacs_strftimeu P_ ((char *, size_t, const char *,
76 const struct tm *, int)); 76 const struct tm *, int));
77static int tm_diff P_ ((struct tm *, struct tm *)); 77static int tm_diff P_ ((struct tm *, struct tm *));