diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-12 05:09:08 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-12 05:09:08 +0000 |
commit | 4793011a34cd8591671b361b8f06f0d9cafeb305 (patch) | |
tree | 3cd9f80c0ed5f15dc8839f5775cb4a2519c68969 /bfd/hosts | |
parent | 11e7b867f1c259540a6680250c17e3d238278fd2 (diff) | |
download | gdb-4793011a34cd8591671b361b8f06f0d9cafeb305.zip gdb-4793011a34cd8591671b361b8f06f0d9cafeb305.tar.gz gdb-4793011a34cd8591671b361b8f06f0d9cafeb305.tar.bz2 |
* hosts/i386sco.h: Define a bunch of stuff for core files.
* sco-core.c: Remove, replace by trad-core.c.
* trad-core.c: If HOST_STACK_START_ADDR is defined, use it.
* config/i386sco.mh: Use trad-core not sco-core.
* hosts/i386isc.h, config/i386isc.mh: Remove.
* configure.host: Use i386sco for isc.
* config/i386-sco.mt: Remove, identical to i386-coff.mt.
* config.bfd: Use i386-coff not i386-sco.
Diffstat (limited to 'bfd/hosts')
-rw-r--r-- | bfd/hosts/.Sanitize | 1 | ||||
-rw-r--r-- | bfd/hosts/i386isc.h | 43 |
2 files changed, 0 insertions, 44 deletions
diff --git a/bfd/hosts/.Sanitize b/bfd/hosts/.Sanitize index 422f243..93f062b 100644 --- a/bfd/hosts/.Sanitize +++ b/bfd/hosts/.Sanitize @@ -44,7 +44,6 @@ hppabsd.h hppahpux.h i386aix.h i386bsd.h -i386isc.h i386linux.h i386lynx.h i386mach3.h diff --git a/bfd/hosts/i386isc.h b/bfd/hosts/i386isc.h deleted file mode 100644 index b07af47..0000000 --- a/bfd/hosts/i386isc.h +++ /dev/null @@ -1,43 +0,0 @@ -/* Host configuration file for Interactive Unix 3.2 */ -/* From Minh Tran-Le <TRANLE@INTELLICORP.COM>. */ -#include <ansidecl.h> -#include <fcntl.h> -#include <errno.h> -#include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <ctype.h> -#include <string.h> -#include <unistd.h> - -#ifndef O_ACCMODE -#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) -#endif -#ifndef SEEK_SET -#define SEEK_SET 0 -#define SEEK_CUR 1 -#endif - -#define USE_UTIME - -/* Some things that need to be defined in order to make code written for - BSD Unix compile under System V Unix. */ - -/*#include <memory.h>*/ -#define bcmp(b1,b2,len) memcmp(b1,b2,len) -#define bcopy(src,dst,len) memcpy(dst,src,len) -#define bzero(s,n) memset(s,0,n) - -#include <string.h> - -#ifndef DONTDECLARE_MALLOC -extern PTR malloc PARAMS ((unsigned)); -extern PTR realloc PARAMS ((PTR, unsigned)); -extern void free PARAMS ((PTR)); -#endif - -#include "fopen-same.h" - -#ifndef fileno -#define fileno(fp) ((fp)->_file) -#endif |