diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2012-03-02 13:38:39 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2012-03-02 13:38:39 +0000 |
commit | b261e0c5364661b66d55f4e77e95e7d09af8b9aa (patch) | |
tree | 3a36835d4d7c7fe6d45a11830a6bbe3c008f9e9f /gdb/remote-sim.c | |
parent | a95babbf381faac591ef74244aba6b399448c653 (diff) | |
download | gdb-b261e0c5364661b66d55f4e77e95e7d09af8b9aa.zip gdb-b261e0c5364661b66d55f4e77e95e7d09af8b9aa.tar.gz gdb-b261e0c5364661b66d55f4e77e95e7d09af8b9aa.tar.bz2 |
Fix -Wmissing-prototypes build.
* ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
* remote-sim.c (gdbsim_has_all_memory): Likewise.
(gdbsim_has_memory): Likewise.
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index ee73cce..75a7941 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -1239,7 +1239,7 @@ gdbsim_pid_to_str (struct target_ops *ops, ptid_t ptid) /* Simulator memory may be accessed after the program has been loaded. */ -int +static int gdbsim_has_all_memory (struct target_ops *ops) { struct sim_inferior_data *sim_data @@ -1251,7 +1251,7 @@ gdbsim_has_all_memory (struct target_ops *ops) return 1; } -int +static int gdbsim_has_memory (struct target_ops *ops) { struct sim_inferior_data *sim_data |