diff options
author | Eli Zaretskii <eliz@gnu.org> | 2015-10-10 13:45:15 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2015-10-10 13:45:15 +0300 |
commit | f655d09fd5b49652f11ab91a31b920dbc36eb10f (patch) | |
tree | b6b88f2979117fe3b162b929bc53c59c4421ea47 | |
parent | 8f41c3098e6b716cf09f5ea95b0ea1253fd98656 (diff) | |
download | emacs-f655d09fd5b49652f11ab91a31b920dbc36eb10f.tar.gz emacs-f655d09fd5b49652f11ab91a31b920dbc36eb10f.tar.bz2 emacs-f655d09fd5b49652f11ab91a31b920dbc36eb10f.zip |
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.
-rw-r--r-- | src/emacs.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. */ #include "syntax.h" #include "sysselect.h" #include "systime.h" +#include "puresize.h" #include "gnutls.h" |