]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/common/sim-io.c
callback.h:struct host_callback_struct compilation error on Windows hosts.
[thirdparty/binutils-gdb.git] / sim / common / sim-io.c
index 918137bacd482d2c2562043928f0d1fcaa92fd2a..1114ec6138ec799e4307e8a52078d1d128e9e261 100644 (file)
@@ -391,11 +391,11 @@ sim_io_poll_read (SIM_DESC sd,
 int
 sim_io_stat (SIM_DESC sd, const char *path, struct stat *buf)
 {
-  return STATE_CALLBACK (sd)->stat (STATE_CALLBACK (sd), path, buf);
+  return STATE_CALLBACK (sd)->to_stat (STATE_CALLBACK (sd), path, buf);
 }
 
 int
 sim_io_fstat (SIM_DESC sd, int fd, struct stat *buf)
 {
-  return STATE_CALLBACK (sd)->fstat (STATE_CALLBACK (sd), fd, buf);
+  return STATE_CALLBACK (sd)->to_fstat (STATE_CALLBACK (sd), fd, buf);
 }