aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-06-11 13:50:11 +0000
committerAndrew Cagney <cagney@redhat.com>2003-06-11 13:50:11 +0000
commitcd90e54f8f85c02cf181ed16bfe758d92abaf3de (patch)
tree866a0826ce45b2d8f46fde8d8d26468785779863
parentde6e5e1a72f20e126467197b66c574c6668c2a9c (diff)
downloadgdb-cd90e54f8f85c02cf181ed16bfe758d92abaf3de.zip
gdb-cd90e54f8f85c02cf181ed16bfe758d92abaf3de.tar.gz
gdb-cd90e54f8f85c02cf181ed16bfe758d92abaf3de.tar.bz2
2003-06-11 Andrew Cagney <cagney@redhat.com>
* remote-fileio.c: Include "remote-fileio.h". * Makefile.in (remote-fileio.o): Update dependencies. (remote_fileio_h): Fix typo.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/Makefile.in5
-rw-r--r--gdb/remote-fileio.c1
3 files changed, 10 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 080ce14..3c75d91 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2003-06-11 Andrew Cagney <cagney@redhat.com>
+ * remote-fileio.c: Include "remote-fileio.h".
+ * Makefile.in (remote-fileio.o): Update dependencies.
+ (remote_fileio_h): Fix typo.
+
+2003-06-11 Andrew Cagney <cagney@redhat.com>
+
* xstormy16-tdep.c (xstormy16_push_return_address): Make static.
(xstormy16_save_dummy_frame_tos): Make static.
(_initialize_xstormy16_tdep): Add declaration.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 7aa80b8..95a2f63 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -710,7 +710,7 @@ regcache_h = regcache.h
reggroups_h = reggroups.h
remote_utils_h = remote-utils.h $(target_h)
remote_h = remote.h
-remote_fileio_h = remote_fileio.h
+remote_fileio_h = remote-fileio.h
scm_lang_h = scm-lang.h $(scm_tags_h)
scm_tags_h = scm-tags.h
sentinel_frame_h = sentinel-frame.h
@@ -2156,7 +2156,8 @@ remote.o: remote.c $(defs_h) $(gdb_string_h) $(inferior_h) $(bfd_h) \
$(event_loop_h) $(event_top_h) $(inf_loop_h) $(serial_h) \
$(gdbcore_h) $(solib_h) $(remote-fileio_h)
remote-fileio.o: remote-fileio.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \
- $(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h)
+ $(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h) \
+ $(remote_fileio_h)
rom68k-rom.o: rom68k-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
$(serial_h) $(regcache_h) $(value_h) $(m68k_tdep_h)
rs6000-nat.o: rs6000-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \
diff --git a/gdb/remote-fileio.c b/gdb/remote-fileio.c
index 348d637..fd57617 100644
--- a/gdb/remote-fileio.c
+++ b/gdb/remote-fileio.c
@@ -28,6 +28,7 @@
#include "gdb/fileio.h"
#include "gdb_wait.h"
#include "gdb_stat.h"
+#include "remote-fileio.h"
#include <fcntl.h>
#include <sys/time.h>