diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-04 00:41:10 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-04 00:41:10 +0000 |
commit | 507f3c78fb4a1235b731350d60f1bf0ce94b4175 (patch) | |
tree | 6ea9ac74469d05832c141119201193804a03f09c /gdb/varobj.c | |
parent | 450005e7c2e864ed0b7ab8c85947716cc707b98a (diff) | |
download | gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.zip gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.tar.gz gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.tar.bz2 |
Eliminate PARAMS from function pointer declarations.
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r-- | gdb/varobj.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index a2699f7..faae5f8 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -287,28 +287,28 @@ struct language_specific enum varobj_languages language; /* The number of children of PARENT. */ - int (*number_of_children) PARAMS ((struct varobj * parent)); + int (*number_of_children) (struct varobj * parent); /* The name (expression) of a root varobj. */ - char *(*name_of_variable) PARAMS ((struct varobj * parent)); + char *(*name_of_variable) (struct varobj * parent); /* The name of the INDEX'th child of PARENT. */ - char *(*name_of_child) PARAMS ((struct varobj * parent, int index)); + char *(*name_of_child) (struct varobj * parent, int index); /* The value_ptr of the root variable ROOT. */ - value_ptr (*value_of_root) PARAMS ((struct varobj ** root_handle)); + value_ptr (*value_of_root) (struct varobj ** root_handle); /* The value_ptr of the INDEX'th child of PARENT. */ - value_ptr (*value_of_child) PARAMS ((struct varobj * parent, int index)); + value_ptr (*value_of_child) (struct varobj * parent, int index); /* The type of the INDEX'th child of PARENT. */ - struct type *(*type_of_child) PARAMS ((struct varobj * parent, int index)); + struct type *(*type_of_child) (struct varobj * parent, int index); /* Is VAR editable? */ - int (*variable_editable) PARAMS ((struct varobj * var)); + int (*variable_editable) (struct varobj * var); /* The current value of VAR. */ - char *(*value_of_variable) PARAMS ((struct varobj * var)); + char *(*value_of_variable) (struct varobj * var); }; /* Array of known source language routines. */ |