From 9e77e83d300a8ecb97bcb9abc1bb78a7441cf519 Mon Sep 17 00:00:00 2001 From: Stu Grossman Date: Thu, 8 Aug 1996 02:50:22 +0000 Subject: * dwarf2read.c dwarfread.c exec.c infcmd.c infrun.c main.c mdebugread.c os9kread.c source.c top.c utils.c: Don't include param.h or sys/file.h (or unistd.h in some cases). * defs.h exec.c inflow.c remote-array.c remote-e7000.c sparcl-tdep.c terminal.h utils.c: Replace all occurances of __WIN32__, WINGDB, WIN32, etc... with _WIN32. * main.c: Remove #ifndef WINGDB around option processing. Fix bug with passing argc==0 and argv==NULL to getopt. * (main) Remove calls to access() before source_command. Let soure_command handle access errors. * maint.c (maintenance_dump_me): #ifdef out for _WIN32. * symtab.c (operator_chars): Make this global for wingdb. * top.c (disconnect): #ifdef out for _WIN32. * (source_command): If got an error and from_tty, then call print error, else just return quietly. * utils.c (fatal_dump_core): Can't kill ourselves under windows. Just exit. * (pollquit notice_quit): #ifdef out stuff that doesn't exist under windows. --- gdb/sparcl-tdep.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'gdb/sparcl-tdep.c') diff --git a/gdb/sparcl-tdep.c b/gdb/sparcl-tdep.c index ed9afb8..08736aa 100644 --- a/gdb/sparcl-tdep.c +++ b/gdb/sparcl-tdep.c @@ -23,16 +23,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "target.h" #include "serial.h" #include -#include -#if defined(__GO32__) || defined(WIN32) -#undef HAVE_SOCKETS -#else +#if !defined(__GO32__) && !defined(_WIN32) #define HAVE_SOCKETS -#endif - - -#ifdef HAVE_SOCKETS +#include #include #include #include -- cgit v1.1