(pipe_windows_open): Declare locals at the beginning of the scope.
+2008-10-09 Pedro Alves <pedro@codesourcery.com>
+
+ * ser-mingw.c: Include "command.h".
+ (pipe_windows_open): Declare locals at the beginning of the scope.
+
2008-10-08 Pedro Alves <pedro@codesourcery.com>
* remote.c (struct remote_state) <waiting_for_stop_reply>: New
#include "gdb_assert.h"
#include "gdb_string.h"
+#include "command.h"
+
void _initialize_ser_windows (void);
struct ser_windows_state
{
struct pipe_state *ps;
FILE *pex_stderr;
+ char **argv;
+ struct cleanup *back_to;
if (name == NULL)
error_no_arg (_("child command"));
- char **argv = gdb_buildargv (name);
- struct cleanup *back_to = make_cleanup_freeargv (argv);
+ argv = gdb_buildargv (name);
+ back_to = make_cleanup_freeargv (argv);
if (! argv[0] || argv[0][0] == '\0')
error ("missing child command");