diff tparam.c @ 12994:bd38619285f7

Don't assume that HAVE_CONFIG_H implies emacs.
author David J. MacKenzie <djm@gnu.org>
date Sat, 02 Sep 1995 23:47:41 +0000
parents 8fc56d171ada
children 6e7bb4bd5010
line wrap: on
line diff
--- a/tparam.c	Sat Sep 02 16:36:41 1995 +0000
+++ b/tparam.c	Sat Sep 02 23:47:41 1995 +0000
@@ -18,8 +18,9 @@
 /* Emacs config.h may rename various library functions such as malloc.  */
 #ifdef HAVE_CONFIG_H
 #include <config.h>
-#else /* not HAVE_CONFIG_H */
+#endif
 
+#ifndef emacs
 #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
 #define bcopy(s, d, n) memcpy ((d), (s), (n))
 #endif
@@ -32,7 +33,7 @@
 char *realloc ();
 #endif
 
-#endif /* not HAVE_CONFIG_H */
+#endif /* not emacs */
 
 #ifndef NULL
 #define NULL (char *) 0