diff options
author | Fred Fish <fnf@specifix.com> | 1991-12-20 19:44:16 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-12-20 19:44:16 +0000 |
commit | ee1ad69ccdd586171462c68235793bdf71f0b33d (patch) | |
tree | e898b64cba56a2475c9baaba4b8ac23d0903f669 /gdb/xm-i386v4.h | |
parent | 5f32984ea685edfc20fb8ab27bc780086d8bb07e (diff) | |
download | gdb-ee1ad69ccdd586171462c68235793bdf71f0b33d.zip gdb-ee1ad69ccdd586171462c68235793bdf71f0b33d.tar.gz gdb-ee1ad69ccdd586171462c68235793bdf71f0b33d.tar.bz2 |
* configure.in, tm-amix.h, tm-i386v4.h, xm-amix.h, xm-i386v4.h:
Change svr4 references to sysv4.
* source.c: Move declaration of external function index to
front of file so it is in scope for all references.
* utils.c (error, fatal): Make definitions consistent with
defs.h declarations (declared as "volatile void").
Diffstat (limited to 'gdb/xm-i386v4.h')
-rw-r--r-- | gdb/xm-i386v4.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/xm-i386v4.h b/gdb/xm-i386v4.h index 0b54b59..85d80c8 100644 --- a/gdb/xm-i386v4.h +++ b/gdb/xm-i386v4.h @@ -24,5 +24,12 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Pick up more stuff from the generic SVR4 host include file. */ -#include "xm-svr4.h" +#include "xm-sysv4.h" +/* The native AT&T compiler for i386/SVR4 complains about some of the + uses of volatile in the defs.h file. So shut it up by simply defining + volatile away. */ + +#ifndef __GNUC__ +#define volatile /**/ +#endif |