diff options
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -650,7 +650,11 @@ extern void free_command_lines (struct command_line **); struct continuation_arg { struct continuation_arg *next; - void *data; + union continuation_data { + void *pointer; + int integer; + long longint; + } data; }; struct continuation |