[3/3] sim: assume sys/stat.h always exists (via gnulib)
Commit Message
We have many uses of sys/stat.h that are unprotected by HAVE_SYS_STAT_H,
so this is more formalizing the reality that we require this header.
Since we switched to gnulib, it guarantees that a sys/stat.h exists
for us to include, so we're doubly OK.
---
sim/common/sim-memopt.c | 2 --
sim/configure | 33 ++-------------------------------
sim/cris/traps.c | 2 --
sim/h8300/compile.c | 2 +-
sim/m4/sim_ac_platform.m4 | 5 +----
sim/ppc/emul_unix.c | 4 ----
sim/sh/interp.c | 2 --
7 files changed, 4 insertions(+), 46 deletions(-)
@@ -30,9 +30,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
-#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
-#endif
#include "sim-main.h"
#include "sim-assert.h"
@@ -39,9 +39,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
-#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
-#endif
/* For PATH_MAX, originally. */
#ifdef HAVE_LIMITS_H
#include <limits.h>
@@ -26,11 +26,11 @@
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
+#include <sys/stat.h>
#include "bfd.h"
#include "sim-main.h"
#include "sim/sim-h8300.h"
-#include "sys/stat.h"
#include "sys/types.h"
#include "sim-options.h"
#include "sim-signal.h"
@@ -37,7 +37,6 @@ AC_CHECK_HEADERS_ONCE(m4_flatten([
sys/param.h
sys/resource.h
sys/socket.h
- sys/stat.h
sys/statfs.h
sys/termio.h
sys/termios.h
@@ -126,9 +125,7 @@ AC_CHECK_MEMBERS([[struct stat.st_dev], [struct stat.st_ino],
[[#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
-#ifdef HAVE_SYS_STAT_H
-#include <sys/stat.h>
-#endif]])
+#include <sys/stat.h>]])
AC_CHECK_TYPES([__int128])
AC_CHECK_TYPES(socklen_t, [], [],
@@ -1055,7 +1055,6 @@ typedef uint32_t solaris_ino_t;
typedef uint32_t solaris_mode_t;
typedef uint32_t solaris_nlink_t;
-#ifdef HAVE_SYS_STAT_H
#define SOLARIS_ST_FSTYPSZ 16 /* array size for file system type name */
/* AIX 7.1 defines st_pad[123] to st_[amc]tim.tv_pad, respectively */
@@ -1145,7 +1144,6 @@ convert_to_solaris_stat(unsigned_word addr,
emul_write_buffer(&target, addr, sizeof(target), processor, cia);
}
-#endif /* HAVE_SYS_STAT_H */
#ifndef HAVE_STAT
#define do_solaris_stat 0
@@ -2011,7 +2009,6 @@ typedef int32_t linux_time_t;
typedef int32_t linux_clock_t;
typedef int32_t linux_daddr_t;
-#ifdef HAVE_SYS_STAT_H
/* For the PowerPC, don't both with the 'old' stat structure, since there
should be no extant binaries with that structure. */
@@ -2082,7 +2079,6 @@ convert_to_linux_stat(unsigned_word addr,
emul_write_buffer(&target, addr, sizeof(target), processor, cia);
}
-#endif /* HAVE_SYS_STAT_H */
#ifndef HAVE_STAT
#define do_linux_stat 0
@@ -38,9 +38,7 @@
#include <string.h>
#include <stdlib.h>
-#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
-#endif
#include <time.h>
#include <sys/time.h>
#ifdef HAVE_UTIME_H