changeset 65763:1a50ac5aaa75

Move systime.h include after lisp.h. (make_time): Move prototype from systime.h.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 30 Sep 2005 22:38:16 +0000
parents 77dd61f8bf51
children 375ab086d366
files src/editfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/editfns.c	Fri Sep 30 21:04:56 2005 +0000
+++ b/src/editfns.c	Fri Sep 30 22:38:16 2005 +0000
@@ -37,6 +37,8 @@
 #include <sys/utsname.h>
 #endif
 
+#include "lisp.h"
+
 /* systime.h includes <sys/time.h> which, on some systems, is required
    for <sys/resource.h>; thus systime.h must be included before
    <sys/resource.h> */
@@ -48,7 +50,6 @@
 
 #include <ctype.h>
 
-#include "lisp.h"
 #include "intervals.h"
 #include "buffer.h"
 #include "charset.h"
@@ -71,7 +72,6 @@
 extern char **environ;
 #endif
 
-extern Lisp_Object make_time P_ ((time_t));
 extern size_t emacs_strftimeu P_ ((char *, size_t, const char *,
 				   const struct tm *, int));
 static int tm_diff P_ ((struct tm *, struct tm *));