changeset 29805:0df8151400b9

[emacs]: Include lisp.h.
author Dave Love <fx@gnu.org>
date Tue, 20 Jun 2000 18:23:12 +0000
parents d8776351a540
children 419756e43257
files src/tparam.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/tparam.c	Tue Jun 20 18:19:03 2000 +0000
+++ b/src/tparam.c	Tue Jun 20 18:23:12 2000 +0000
@@ -21,7 +21,9 @@
 #include <config.h>
 #endif
 
-#ifndef emacs
+#ifdef emacs
+#include "lisp.h"		/* for xmalloc */
+#else
 #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
 #define bcopy(s, d, n) memcpy ((d), (s), (n))
 #endif