aboutsummaryrefslogtreecommitdiffstats
path: root/src/tparam.c
diff options
context:
space:
mode:
authorDave Love2000-06-20 18:23:12 +0000
committerDave Love2000-06-20 18:23:12 +0000
commit83c2ece52036a4c9182f2c4b38319d35a3c8bba1 (patch)
tree378e8ce6740c5d7ee1263b113ef274d9acbcf6ff /src/tparam.c
parente608805f43dff8a516e106fc3d9349e7276d81ec (diff)
downloademacs-83c2ece52036a4c9182f2c4b38319d35a3c8bba1.tar.gz
emacs-83c2ece52036a4c9182f2c4b38319d35a3c8bba1.zip
[emacs]: Include lisp.h.
Diffstat (limited to 'src/tparam.c')
-rw-r--r--src/tparam.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tparam.c b/src/tparam.c
index 42be1f12884..7d3752713fa 100644
--- a/src/tparam.c
+++ b/src/tparam.c
@@ -21,7 +21,9 @@ Boston, MA 02111-1307, USA. */
21#include <config.h> 21#include <config.h>
22#endif 22#endif
23 23
24#ifndef emacs 24#ifdef emacs
25#include "lisp.h" /* for xmalloc */
26#else
25#if defined(HAVE_STRING_H) || defined(STDC_HEADERS) 27#if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
26#define bcopy(s, d, n) memcpy ((d), (s), (n)) 28#define bcopy(s, d, n) memcpy ((d), (s), (n))
27#endif 29#endif