+2002-03-03 Gary Wong <gtw@gnu.org>
+
+ * termcap.c [!emacs]: Replace ospeed for building standalone
+ libtermcap, for binary compatibility.
+
+ * tparam.c [!emacs]: Move #define of bcopy to after string.h.
+
2002-03-03 Richard M. Stallman <rms@gnu.org>
* xrdb.c (file_p): Rename arg `path' to `filename'.
#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
#ifdef STDC_HEADERS
#include <stdlib.h>
char *realloc ();
#endif
+/* Do this after the include, in case string.h prototypes bcopy. */
+#if (defined(HAVE_STRING_H) || defined(STDC_HEADERS)) && !defined(bcopy)
+#define bcopy(s, d, n) memcpy ((d), (s), (n))
+#endif
+
#endif /* not emacs */
#ifndef NULL