From: Fred Fish Date: Sat, 11 Jan 1992 01:46:29 +0000 (+0000) Subject: Change abort() to a function return void to match usage on SVR4. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5baf85b6c555500c1d605eef862139479cb61ceb;p=binutils-gdb.git Change abort() to a function return void to match usage on SVR4. --- diff --git a/bfd/hosts/amix.h b/bfd/hosts/amix.h index df6895443fe..1dd5cc91487 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 2e8fa448668..b253b184ba9 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*));