From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Toine Litjens" To: nobody@sourceware.cygnus.com Cc: insight-prs@sourceware.cygnus.com Subject: Re: insight/85 Date: Tue, 03 Jul 2001 01:23:00 -0000 Message-id: <20010703082301.5324.qmail@sourceware.cygnus.com> X-SW-Source: 2001-q3/msg00000.html List-Id: The following reply was made to PR insight/85; it has been noted by GNATS. From: "Toine Litjens" To: , , , Cc: Subject: Re: insight/85 Date: Tue, 3 Jul 2001 09:58:26 +0200 http://sources.redhat.com/cgi-bin/gnatsweb.pl?cmd=view&pr=85&database=insigh t A define in defs.h is declared too late. Move the #include "defs.h" in the file sim_calls.c below #include "options.h" ==== include section of: insight-5.0\sim\ppc\sim_calls.c === #include /* FIXME - should be machine dependant version */ #include #include #include "psim.h" #include "options.h" #include "defs.h" #undef printf_filtered /* blow away the mapping */ #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_STRING_H #include #else #ifdef HAVE_STRINGS_H #include #endif #endif #include "bfd.h" #include "callback.h" #include "remote-sim.h"