# HG changeset patch # User Dan Nicolaescu # Date 1128119896 0 # Node ID 1a50ac5aaa750a26f13807f8630f143dfe6d79bf # Parent 77dd61f8bf5139a504155e7f9167a951a5606dc1 Move systime.h include after lisp.h. (make_time): Move prototype from systime.h. diff -r 77dd61f8bf51 -r 1a50ac5aaa75 src/editfns.c --- 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 #endif +#include "lisp.h" + /* systime.h includes which, on some systems, is required for ; thus systime.h must be included before */ @@ -48,7 +50,6 @@ #include -#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 *));