1993-09-17 17:08:00 +08:00
|
|
|
#include <stddef.h>
|
1994-02-22 09:51:38 +08:00
|
|
|
#include <stdlib.h>
|
1992-10-02 15:26:50 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/file.h>
|
1993-09-17 17:08:00 +08:00
|
|
|
#ifndef O_ACCMODE
|
1992-10-02 15:26:50 +08:00
|
|
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
|
|
|
#endif
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
|
* hpux-core.c: New file; backend for HP/UX style core files.
* bfd.c (struct _bfd): Renamed hppa_core_data field to
hpux_core_data.
* bfd-in2.h: Updated.
* hppa.c (make_bfd_asection, hppa_core_file_p,
hppa_core_file_failing_command, hppa_core_file_failing_signal,
hppa_core_file_matches_executable_p): Moved into hpux-core.c.
Removed from target vector.
* libhppa.h (struct hppa_core_struct and accessor macros): Moved
into hpux-core.c.
* targets.c: If HPUX_CORE is defined, add hpux_core_vec to
target list.
* config/hp300.mh (HDEFINES): Set to -DHPUX_CORE.
(HDEPFILES): Set to hpux-core.o.
* config/hppabsd.mh, config/hppahpux.mh: Likewise.
* hosts/hp300.h (HOST_HP300HPUX): Define.
* Makefile.in (OPTIONAL_BACKENDS): Added sco-core.o,
aix386-core.o, hpux-core.o.
(sco-core.o, aix386-core.o, hpux-core.o): New dependencies.
1993-07-23 03:39:41 +08:00
|
|
|
#define HOST_HP300HPUX
|
|
|
|
|
1992-11-03 04:41:14 +08:00
|
|
|
#define USE_UTIME
|
|
|
|
|
1992-10-02 15:26:50 +08:00
|
|
|
/* 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)
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static int
|
|
|
|
rename(from, to)
|
|
|
|
{
|
|
|
|
unlink(to);
|
|
|
|
return(link(from, to));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "fopen-same.h"
|