summaryrefslogtreecommitdiff
path: root/gdb/value.h
diff options
context:
space:
mode:
authorsergiodj <sergiodj>2013-08-13 19:25:04 +0000
committersergiodj <sergiodj>2013-08-13 19:25:04 +0000
commit64fd29d4cf1b535cb07bd28f03df5190226212bd (patch)
tree77d09420b8fe50cd60828b46ef9cc3d164916e03 /gdb/value.h
parent02e12c9d59a0bd2cbfe7fc4ffda76031aca0c72a (diff)
downloadgdb-64fd29d4cf1b535cb07bd28f03df5190226212bd.tar.gz
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.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/value.h b/gdb/value.h
index 599850e5f00..bef193c86a5 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