mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
2005-10-29 H.J. Lu <hongjiu.lu@intel.com>
* hpux-core.c: Include <machine/reg.h> only if HPUX_CORE is define. * osf-core.c: Include <sys/core.h> only if OSF_CORE is defined. * sco5-core.c: Include <sys/paccess.h> and <sys/region.h> only if SCO5_CORE is defined.
This commit is contained in:
parent
6906ad7f1f
commit
9b8181460d
@ -1,3 +1,11 @@
|
||||
2005-10-29 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* hpux-core.c: Include <machine/reg.h> only if HPUX_CORE is
|
||||
define.
|
||||
* osf-core.c: Include <sys/core.h> only if OSF_CORE is defined.
|
||||
* sco5-core.c: Include <sys/paccess.h> and <sys/region.h> only
|
||||
if SCO5_CORE is defined.
|
||||
|
||||
2005-10-29 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* Makefile.am: Run "make dep-am".
|
||||
|
@ -61,7 +61,9 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
# endif
|
||||
#endif
|
||||
#include <signal.h>
|
||||
#ifdef HPUX_CORE
|
||||
#include <machine/reg.h>
|
||||
#endif
|
||||
#include <sys/user.h> /* After a.out.h */
|
||||
#include <sys/file.h>
|
||||
|
||||
|
@ -26,7 +26,9 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#include "libbfd.h"
|
||||
|
||||
#include <sys/user.h>
|
||||
#ifdef OSF_CORE
|
||||
#include <sys/core.h>
|
||||
#endif
|
||||
|
||||
/* forward declarations */
|
||||
|
||||
|
@ -31,8 +31,10 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#include <signal.h>
|
||||
|
||||
#include <sys/user.h> /* After a.out.h */
|
||||
#ifdef SCO5_CORE
|
||||
#include <sys/paccess.h>
|
||||
#include <sys/region.h>
|
||||
#endif
|
||||
|
||||
struct sco5_core_struct
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user