summaryrefslogtreecommitdiff
path: root/gdb/windows-nat.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-03-02 05:38:46 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-03-02 05:38:46 +0000
commit1bff93fc562a4dd58bb9cad0cd6435665bf5b395 (patch)
treec3a0742a3fe2ca6ae29d8773b29e6ea1df152077 /gdb/windows-nat.c
parent3e888f7db9dd282b46480b06b7b2ebd6d47a4863 (diff)
downloadgdb-1bff93fc562a4dd58bb9cad0cd6435665bf5b395.tar.gz
gdb/
Fix -Wmissing-prototypes build. * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static. (_initialize_windows_nat, _initialize_check_for_gdb_ini) (_initialize_loadable): New prototypes.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r--gdb/windows-nat.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index 2f2215ab1ce..f536ed1ce95 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -891,7 +891,7 @@ windows_clear_solib (void)
}
/* Load DLL symbol info. */
-void
+static void
dll_symbol_command (char *args, int from_tty)
{
int n;
@@ -1386,7 +1386,7 @@ windows_resume (struct target_ops *ops,
handler is in charge of interrupting the inferior using DebugBreakProcess.
Note that this function is not available prior to Windows XP. In this case
we emit a warning. */
-BOOL WINAPI
+static BOOL WINAPI
ctrl_c_handler (DWORD event_type)
{
const int attach_flag = current_inferior ()->attach_flag;
@@ -2512,6 +2512,9 @@ set_windows_aliases (char *argv0)
add_info_alias ("dll", "sharedlibrary", 1);
}
+/* -Wmissing-prototypes */
+extern initialize_file_ftype _initialize_windows_nat;
+
void
_initialize_windows_nat (void)
{
@@ -2671,6 +2674,9 @@ windows_thread_alive (struct target_ops *ops, ptid_t ptid)
? FALSE : TRUE;
}
+/* -Wmissing-prototypes */
+extern initialize_file_ftype _initialize_check_for_gdb_ini;
+
void
_initialize_check_for_gdb_ini (void)
{
@@ -2764,8 +2770,12 @@ bad_GetConsoleFontSize (HANDLE w, DWORD nFont)
return size;
}
+/* -Wmissing-prototypes */
+extern initialize_file_ftype _initialize_loadable;
+
/* Load any functions which may not be available in ancient versions
of Windows. */
+
void
_initialize_loadable (void)
{