From: Dan Nicolaescu Date: Fri, 30 Sep 2005 22:38:16 +0000 (+0000) Subject: Move systime.h include after lisp.h. X-Git-Tag: emacs-pretest-22.0.90~6885 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b17f937955a92bd8416821ec847d859bc9c3de85;p=emacs.git Move systime.h include after lisp.h. (make_time): Move prototype from systime.h. --- 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. */ #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 @@ Boston, MA 02110-1301, USA. */ #include -#include "lisp.h" #include "intervals.h" #include "buffer.h" #include "charset.h" @@ -71,7 +72,6 @@ Boston, MA 02110-1301, USA. */ 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 *));