* defs.h: Only include mmalloc.h if NO_MMALLOC is not
authorFred Fish <fnf@specifix.com>
Mon, 11 Sep 1995 23:41:45 +0000 (23:41 +0000)
committerFred Fish <fnf@specifix.com>
Mon, 11 Sep 1995 23:41:45 +0000 (23:41 +0000)
defined.

gdb/ChangeLog
gdb/defs.h

index 2129a32f61f005c8f0d4a49f495c07f6559bab67..7c7f21bc5287a8f79566159b329e6da8e5ea244c 100644 (file)
@@ -1,3 +1,8 @@
+Sun Sep 10 15:36:21 1995  Fred Fish  <fnf@cygnus.com>
+
+       * defs.h: Only include mmalloc.h if NO_MMALLOC is not
+       defined.
+
 Sun Sep 10 10:24:48 1995  Michael Tiemann  <tiemann@axon.cygnus.com>
 
        * tm-ppc-eabi.h (PC_IN_CALL_DUMMY): Redefine this to work with the
index b188828c515e1fa53d24cba475eb8e28a1b01aae..dfd63af2f526ee065f7e642806531cc77aeccdaf 100644 (file)
@@ -41,7 +41,9 @@ extern char *strsignal PARAMS ((int));
 
 #include "progress.h"
 
+#ifndef NO_MMALLOC
 #include "mmalloc.h"
+#endif
 
 /* For BFD64 and bfd_vma.  */
 #include "bfd.h"
@@ -640,17 +642,29 @@ extern void free ();
 #endif /* MALLOC_INCOMPATIBLE */
 
 #ifndef WIN32
+
+#ifndef strchr
 extern char *strchr ();
+#endif
 
+#ifndef strrchr
 extern char *strrchr ();
+#endif
 
+#ifndef strstr
 extern char *strstr ();
+#endif
 
+#ifndef strtok
 extern char *strtok ();
+#endif
 
+#ifndef strerror
 extern char *strerror ();
 #endif
 
+#endif /* !WIN32 */
+
 /* Various possibilities for alloca.  */
 #ifndef alloca
 # ifdef __GNUC__