diff options
author | Yao Qi <yao@codesourcery.com> | 2012-03-02 12:56:50 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-03-02 12:56:50 +0000 |
commit | a95babbf381faac591ef74244aba6b399448c653 (patch) | |
tree | 0585544f468251638a29bf0c3fa24eba2b6515b7 /gdb/ser-mingw.c | |
parent | d603d4b3dad936893df823ac1906b175298d7d6a (diff) | |
download | binutils-gdb-a95babbf381faac591ef74244aba6b399448c653.tar.gz |
gdb/
Fix -Wmissing-prototypes build.
* charset.c (phony_iconv_open): Make static.
(phony_iconv_close, phony_iconv): Likewise.
* i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
* i386-windows-nat.c (_initialize_i386_windows_nat): New
prototype.
* mingw-hdep.c (_initialize_mingw_hdep): New prototype.
* ser-mingw.c (create_select_thread): Make static.
* windows-termcap.c (tgetent): New prototype.
(tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
Diffstat (limited to 'gdb/ser-mingw.c')
-rw-r--r-- | gdb/ser-mingw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ser-mingw.c b/gdb/ser-mingw.c index d862868984a..cf7c8b7fdec 100644 --- a/gdb/ser-mingw.c +++ b/gdb/ser-mingw.c @@ -428,7 +428,7 @@ typedef DWORD WINAPI (*thread_fn_type)(void *); /* Create a new select thread for SCB executing THREAD_FN. The STATE will be filled in by this function before return. */ -void +static void create_select_thread (thread_fn_type thread_fn, struct serial *scb, struct ser_console_state *state) |