summaryrefslogtreecommitdiff
path: root/gdb/remote-vx.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r--gdb/remote-vx.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c
index d21025c78a9..bde52043981 100644
--- a/gdb/remote-vx.c
+++ b/gdb/remote-vx.c
@@ -257,9 +257,9 @@ vx_create_inferior (char *exec_file, char *args, char **env)
static void
parse_args (register char *arg_string, arg_array *arg_struct)
{
- register int arg_count = 0; /* number of arguments */
- register int arg_index = 0;
- register char *p0;
+ int arg_count = 0; /* number of arguments */
+ int arg_index = 0;
+ char *p0;
memset ((char *) arg_struct, '\0', sizeof (arg_array));
@@ -309,7 +309,7 @@ skip_white_space (register char *p)
static char *
find_white_space (register char *p)
{
- register int c;
+ int c;
while ((c = *p) != ' ' && c != '\t' && c)
{
@@ -934,7 +934,7 @@ sleep_ms (long ms)
static ptid_t
vx_wait (ptid_t ptid_to_wait_for, struct target_waitstatus *status)
{
- register int pid;
+ int pid;
RDB_EVENT rdbEvent;
int quit_failed;