sim: drop unused headers
authorMike Frysinger <vapier@gentoo.org>
Thu, 19 Feb 2015 09:09:54 +0000 (04:09 -0500)
committerMike Frysinger <vapier@gentoo.org>
Fri, 20 Feb 2015 05:16:14 +0000 (00:16 -0500)
These look like left over hacks from the days where we had to protect
ourselves from the compiler and C library.  None of these checks are
relevant, and we have common configure logic to do header tests.  Punt
them all now.

sim/mcore/ChangeLog
sim/mcore/interp.c
sim/mcore/sysdep.h [deleted file]
sim/microblaze/ChangeLog
sim/microblaze/interp.c
sim/microblaze/sysdep.h [deleted file]
sim/moxie/ChangeLog
sim/moxie/interp.c
sim/moxie/sysdep.h [deleted file]

index acb0e21b5c11b7ce70450a1c61ddfb5fbe202ef1..43aadabe3792354fc9552c707302a2c0cc775b7f 100644 (file)
@@ -1,3 +1,9 @@
+2015-02-20  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c: Delete sysdep.h and netinet/in.h includes.
+       Include stdlib.h and string.h.
+       * sysdep.h: Delete.
+
 2015-02-19  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_kill): Delete unused func.
index e2cafbca19140a7f5be4737f8a3850fd0fd114a7..1b8d2a367826c2c13be0b23b19556cefbbf6951e 100644 (file)
@@ -19,10 +19,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "config.h"
 #include <signal.h>
-#include "sysdep.h"
+#include <stdlib.h>
+#include <string.h>
 #include <sys/times.h>
 #include <sys/param.h>
-#include <netinet/in.h>        /* for byte ordering macros */
 #include <unistd.h>
 #include "bfd.h"
 #include "gdb/callback.h"
diff --git a/sim/mcore/sysdep.h b/sim/mcore/sysdep.h
deleted file mode 100644 (file)
index 9f690a1..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-/* System includes and definitions used by the Motorola MCore simulator.
-   Copyright (C) 1999-2015 Free Software Foundation, Inc.
-   Contributed by Cygnus Solutions.
-
-This file is part of GDB, the GNU debugger.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-#ifndef __SYSDEP_H
-#define __SYSDEP_H
-
-#ifndef        hosts_std_host_H
-#include <fcntl.h>
-#include <errno.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <ctype.h>
-#include <string.h>
-#include <sys/file.h>
-#include "ansidecl.h"
-
-#ifndef        O_ACCMODE
-#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
-#endif
-#ifndef        SEEK_SET
-#define SEEK_SET 0
-#endif
-#ifndef        SEEK_CUR
-#define SEEK_CUR 1
-#endif
-#ifdef STDC_HEADERS
-#include <stdlib.h>
-/*#include <string.h>*/
-#else
-extern char * mktemp ();
-#ifndef memset
-extern PTR    memset ();
-#endif
-
-#ifndef        DONTDECLARE_MALLOC
-extern PTR   malloc ();
-extern PTR   realloc ();
-#endif
-
-#ifndef        __GNUC__
-extern PTR   memcpy ();
-#else
-/* char * memcpy (); */
-#endif
-
-#ifdef __STDC__
-extern void free ();
-#else
-extern int free();
-#endif
-
-#ifndef strchr
-extern char * strchr();
-#endif
-extern char * getenv();
-extern PTR    memchr();
-extern char * strrchr();
-
-extern char * strrchr();
-extern char * ctime();
-extern long   atol();
-extern char * getenv();
-#endif /* STDC_HEADERS */
-
-#ifndef        BYTES_IN_PRINTF_INT
-#define BYTES_IN_PRINTF_INT 4
-#endif
-
-#include "fopen-same.h"
-#define hosts_std_host_H
-#endif
-
-#ifdef STDC_HEADERS
-#include <stddef.h>
-#endif /* STDC_HEADERS */
-
-#endif /* __SYSDEP_H */
index a023f9245827013f9617fd8f40ad3d68e4962edb..0a068ffd6b384968413a5336ca7224d70fd63e71 100644 (file)
@@ -1,3 +1,9 @@
+2015-02-20  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c: Delete sysdep.h and netinet/in.h includes.
+       Include stdlib.h and string.h and unistd.h.
+       * sysdep.h: Delete.
+
 2015-02-19  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_kill): Delete unused func.
index b9349bc070d9672549e9acf551c28527eff38bc8..64850efd42fc2f3354fe9ca032a233d30638782f 100644 (file)
 
 #include "config.h"
 #include <signal.h>
-#include "sysdep.h"
+#include <stdlib.h>
+#include <string.h>
 #include <sys/times.h>
 #include <sys/param.h>
-#include <netinet/in.h>        /* for byte ordering macros */
+#include <unistd.h>
 #include "bfd.h"
 #include "gdb/callback.h"
 #include "libiberty.h"
diff --git a/sim/microblaze/sysdep.h b/sim/microblaze/sysdep.h
deleted file mode 100644 (file)
index ebcd1f2..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-/* System includes and definitions used by the Xilinx MicroBlaze simulator.
-   Copyright (C) 1999-2015 Free Software Foundation, Inc.
-   Contributed by Cygnus Solutions.
-
-This file is part of GDB, the GNU debugger.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 3, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along
-with this program; if not, see <http://www.gnu.org/licenses/>.  */
-
-#ifndef __SYSDEP_H
-#define __SYSDEP_H
-
-#ifndef        hosts_std_host_H
-#include <fcntl.h>
-#include <errno.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <ctype.h>
-#include <string.h>
-#include <sys/file.h>
-#include "ansidecl.h"
-
-#ifndef        O_ACCMODE
-#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
-#endif
-#ifndef        SEEK_SET
-#define SEEK_SET 0
-#endif
-#ifndef        SEEK_CUR
-#define SEEK_CUR 1
-#endif
-#ifdef STDC_HEADERS
-#include <stdlib.h>
-/*#include <string.h>*/
-#else
-extern char *mktemp ();
-#ifndef memset
-extern PTR    memset ();
-#endif
-
-#ifndef        DONTDECLARE_MALLOC
-extern PTR   malloc ();
-extern PTR   realloc ();
-#endif
-
-#ifndef        __GNUC__
-extern PTR   memcpy ();
-#else
-/* char *memcpy (); */
-#endif
-
-#ifdef __STDC__
-extern void free ();
-#else
-extern int free();
-#endif
-
-#ifndef strchr
-extern char *strchr();
-#endif
-extern char *getenv();
-extern PTR    memchr();
-extern char *strrchr();
-
-extern char *strrchr();
-extern char *ctime();
-extern long   atol();
-extern char *getenv();
-#endif /* STDC_HEADERS */
-
-#ifndef        BYTES_IN_PRINTF_INT
-#define BYTES_IN_PRINTF_INT 4
-#endif
-
-#include "fopen-same.h"
-#define hosts_std_host_H
-#endif
-
-#ifdef STDC_HEADERS
-#include <stddef.h>
-#endif /* STDC_HEADERS */
-
-#endif /* __SYSDEP_H */
index 3b458ed407fe151a988036c69cbbf57269cd015e..6e6f736507caae3d3b5a7944febea7d95a67a27c 100644 (file)
@@ -1,3 +1,9 @@
+2015-02-20  Mike Frysinger  <vapier@gentoo.org>
+
+       * interp.c: Delete sysdep.h and netinet/in.h includes.
+       Include string.h and unistd.h.
+       * sysdep.h: Delete.
+
 2015-02-19  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_kill): Delete unused func.
index 6e4a747f50fa73f2798732406a1aa473e63f5139..1126552cc1400e8d7e686191c12e6b88b5583209 100644 (file)
@@ -21,10 +21,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <fcntl.h>
 #include <signal.h>
 #include <stdlib.h>
-#include "sysdep.h"
+#include <string.h>
 #include <sys/times.h>
 #include <sys/param.h>
-#include <netinet/in.h>        /* for byte ordering macros */
+#include <unistd.h>
 #include "bfd.h"
 #include "gdb/callback.h"
 #include "libiberty.h"
diff --git a/sim/moxie/sysdep.h b/sim/moxie/sysdep.h
deleted file mode 100644 (file)
index ba9778e..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-/* System includes and definitions used by the moxie simulator.
-   Copyright (C) 2008-2015 Free Software Foundation, Inc.
-   Contributed by Anthony Green
-
-This file is part of GDB, the GNU debugger.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 3 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-#ifndef __SYSDEP_H
-#define __SYSDEP_H
-
-#ifndef        hosts_std_host_H
-#include <fcntl.h>
-#include <errno.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <ctype.h>
-#include <string.h>
-#include <sys/file.h>
-#include "ansidecl.h"
-
-#ifndef        O_ACCMODE
-#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
-#endif
-#ifndef        SEEK_SET
-#define SEEK_SET 0
-#endif
-#ifndef        SEEK_CUR
-#define SEEK_CUR 1
-#endif
-#ifdef STDC_HEADERS
-#include <stdlib.h>
-/*#include <string.h>*/
-#else
-extern char * mktemp ();
-#ifndef memset
-extern PTR    memset ();
-#endif
-
-#ifndef        DONTDECLARE_MALLOC
-extern PTR   malloc ();
-extern PTR   realloc ();
-#endif
-
-#ifndef        __GNUC__
-extern PTR   memcpy ();
-#else
-/* char * memcpy (); */
-#endif
-
-#ifdef __STDC__
-extern void free ();
-#else
-extern int free();
-#endif
-
-#ifndef strchr
-extern char * strchr();
-#endif
-extern char * getenv();
-extern PTR    memchr();
-extern char * strrchr();
-
-extern char * strrchr();
-extern char * ctime();
-extern long   atol();
-extern char * getenv();
-#endif /* STDC_HEADERS */
-
-#ifndef        BYTES_IN_PRINTF_INT
-#define BYTES_IN_PRINTF_INT 4
-#endif
-
-#include "fopen-same.h"
-#define hosts_std_host_H
-#endif
-
-#ifdef STDC_HEADERS
-#include <stddef.h>
-#endif /* STDC_HEADERS */
-
-#endif /* __SYSDEP_H */
This page took 0.030592 seconds and 4 git commands to generate.