gdb_service_t -> struct gdb_service

Remove misleading typedef and redundant suffix from struct gdb_service.
This commit is contained in:
Zachary T Welch
2009-11-13 08:06:52 -08:00
parent 53bfd73591
commit 45a165a432
2 changed files with 10 additions and 10 deletions

View File

@@ -49,10 +49,10 @@ struct gdb_connection
};
typedef struct gdb_service_s
struct gdb_service
{
struct target_s *target;
} gdb_service_t;
};
int gdb_init(void);
int gdb_register_commands(command_context_t *command_context);