diff options
author | Fred Fish <fnf@specifix.com> | 1992-01-11 01:46:29 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-01-11 01:46:29 +0000 |
commit | 5baf85b6c555500c1d605eef862139479cb61ceb (patch) | |
tree | 6a3d1f159f65cc6592d6ba84c998cb8974145634 /bfd | |
parent | f81059ead74106c38256f3df7bceecb1899f4f8d (diff) | |
download | gdb-5baf85b6c555500c1d605eef862139479cb61ceb.zip gdb-5baf85b6c555500c1d605eef862139479cb61ceb.tar.gz gdb-5baf85b6c555500c1d605eef862139479cb61ceb.tar.bz2 |
Change abort() to a function return void to match usage on SVR4.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/hosts/amix.h | 2 | ||||
-rw-r--r-- | bfd/hosts/i386v4.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bfd/hosts/amix.h b/bfd/hosts/amix.h index df68954..1dd5cc9 100644 --- a/bfd/hosts/amix.h +++ b/bfd/hosts/amix.h @@ -19,7 +19,7 @@ #define POSIX_UTIME #define HAVE_PROCFS /* This host has /proc support */ -extern PROTO(int, abort,(void)); +extern PROTO(void, abort,(void)); extern PROTO(int, close,(int)); extern PROTO(void, exit,(int)); extern PROTO(int, fclose,(FILE*)); diff --git a/bfd/hosts/i386v4.h b/bfd/hosts/i386v4.h index 2e8fa44..b253b18 100644 --- a/bfd/hosts/i386v4.h +++ b/bfd/hosts/i386v4.h @@ -19,7 +19,7 @@ #define POSIX_UTIME #define HAVE_PROCFS /* This host has /proc support */ -extern PROTO(int, abort,(void)); +extern PROTO(void, abort,(void)); extern PROTO(int, close,(int)); extern PROTO(void, exit,(int)); extern PROTO(int, fclose,(FILE*)); |