summaryrefslogtreecommitdiff
path: root/sim/microblaze
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-02-19 04:09:54 -0500
committerMike Frysinger <vapier@gentoo.org>2015-02-20 00:16:14 -0500
commitdc049bf460bb1243aaaa48745bb8df64bbb3e1cd (patch)
tree1cd4402936d6e863d157f55804e0b16d72e97cfa /sim/microblaze
parent4c4ca605d5332d4d5b0112932cbf379d82bb7d15 (diff)
downloadbinutils-gdb-dc049bf460bb1243aaaa48745bb8df64bbb3e1cd.tar.gz
sim: drop unused headers
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.
Diffstat (limited to 'sim/microblaze')
-rw-r--r--sim/microblaze/ChangeLog6
-rw-r--r--sim/microblaze/interp.c5
-rw-r--r--sim/microblaze/sysdep.h94
3 files changed, 9 insertions, 96 deletions
diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog
index a023f924582..0a068ffd6b3 100644
--- a/sim/microblaze/ChangeLog
+++ b/sim/microblaze/ChangeLog
@@ -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.
diff --git a/sim/microblaze/interp.c b/sim/microblaze/interp.c
index b9349bc070d..64850efd42f 100644
--- a/sim/microblaze/interp.c
+++ b/sim/microblaze/interp.c
@@ -18,10 +18,11 @@
#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
index ebcd1f2cb65..00000000000
--- a/sim/microblaze/sysdep.h
+++ /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 */