aboutsummaryrefslogtreecommitdiff
path: root/gdb/config
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-07-27 22:37:51 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-07-27 22:37:51 +0000
commit7706616f202b6c0adde4cd05e79f52d1e5f69a1c (patch)
treefe1723fe36f2c41eb76620201399eaa75034ef88 /gdb/config
parent0c2734c384a8d4b36cf87f213878147a6941b824 (diff)
downloadgdb-7706616f202b6c0adde4cd05e79f52d1e5f69a1c.zip
gdb-7706616f202b6c0adde4cd05e79f52d1e5f69a1c.tar.gz
gdb-7706616f202b6c0adde4cd05e79f52d1e5f69a1c.tar.bz2
* config/sparc/xm-sun4os4.h: Define MEM_FNS_DECLARED and include
<memory.h>. Include <malloc.h> rather than declaring malloc functions ourself. * ser-unix.c (set_tty_state): Don't ignore errors setting process group. * inflow.c (terminal_inferior): If attach_flag set, ignore errors from set_tty_state.
Diffstat (limited to 'gdb/config')
-rw-r--r--gdb/config/sparc/xm-sun4os4.h24
1 files changed, 13 insertions, 11 deletions
diff --git a/gdb/config/sparc/xm-sun4os4.h b/gdb/config/sparc/xm-sun4os4.h
index 03d1c8f..1f74de3 100644
--- a/gdb/config/sparc/xm-sun4os4.h
+++ b/gdb/config/sparc/xm-sun4os4.h
@@ -41,18 +41,20 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define MMAP_BASE_ADDRESS 0xE0000000 /* First mapping here */
#define MMAP_INCREMENT 0x01000000 /* Increment to next mapping */
-#ifndef __STDC__
-/* GCC (2.3-ish at least) fixes this in fixincludes. */
-/* /usr/include/malloc.h is included by vx-share/xdr_ld. */
-/* /usr/include/malloc.h defines these w/o prototypes (and uses
- char * instead of void *). */
+/* /usr/include/malloc.h is included by vx-share/xdr_ld, and might
+ declare these using char * not void *. The following should work with
+ acc, gcc, or /bin/cc. */
+
#define MALLOC_INCOMPATIBLE
-extern char* malloc ();
-extern char* realloc ();
-/* Yes, it really does define it as returning int, both in malloc.h and
- stdlib.h, at least on SunOS 4.1.1. */
-extern int free ();
-#endif
+#include <malloc.h>
+
+/* acc for SunOS4 comes with string.h and memory.h headers which we
+ pick up somewhere (where?) and which use char *, not void *. The
+ following should work with acc, gcc, or /bin/cc, at least with
+ SunOS 4.1.1. */
+
+#define MEM_FNS_DECLARED
+#include <memory.h>
/* SunOS 4.x uses nonstandard "char *" as type of third argument to ptrace() */