From: Eli Zaretskii Date: Sat, 10 Oct 2015 10:45:15 +0000 (+0300) Subject: Avoid link-time errors due to inline functions X-Git-Tag: emacs-25.0.90~1176 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f655d09fd5b49652f11ab91a31b920dbc36eb10f;p=emacs.git Avoid link-time errors due to inline functions * src/emacs.c: Include puresize.h, to avoid link-time errors in unoptimized builds due to PURE_P and CHECK_IMPURE, which are now inline functions. --- diff --git a/src/emacs.c b/src/emacs.c index 5a6999d9b1d..3eff5a720ea 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -82,6 +82,7 @@ along with GNU Emacs. If not, see . */ #include "syntax.h" #include "sysselect.h" #include "systime.h" +#include "puresize.h" #include "gnutls.h"