diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2013-08-13 19:25:04 +0000 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2013-08-13 19:25:04 +0000 |
commit | 73033f12d9e126f3ee6659cf2522455d7bac0236 (patch) | |
tree | 326517e03bdbcc0c90d6890f1e8be7c0b6f830e4 /gdb/value.h | |
parent | 5e92f71a868595fcefd90ad1737c0f994a58d551 (diff) | |
download | gdb-73033f12d9e126f3ee6659cf2522455d7bac0236.zip gdb-73033f12d9e126f3ee6659cf2522455d7bac0236.tar.gz gdb-73033f12d9e126f3ee6659cf2522455d7bac0236.tar.bz2 |
Adjusting prototype declaration for gdb/value.h:create_internalvar_type_lazy,
in order to match GNU Coding Standards.
2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
* value.h (create_internalvar_type_lazy): Adjust prototype
declaration.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/value.h b/gdb/value.h index 599850e..bef193c 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -813,10 +813,9 @@ struct internalvar_funcs void (*destroy) (void *data); }; -extern struct internalvar * -create_internalvar_type_lazy (const char *name, - const struct internalvar_funcs *funcs, - void *data); +extern struct internalvar *create_internalvar_type_lazy (const char *name, + const struct internalvar_funcs *funcs, + void *data); /* Compile an internal variable to an agent expression. VAR is the variable to compile; EXPR and VALUE are the agent expression we are |