diff options
author | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-05-25 18:09:09 +0000 |
---|---|---|
committer | Jason Molenda <jsm@bugshack.cygnus.com> | 1999-05-25 18:09:09 +0000 |
commit | eb557a121edaebd17d600c2558a17f4f6ad920bb (patch) | |
tree | ee4d2394905f942faf968afe0a1f8acb0fc17435 /gdb/jv-valprint.c | |
parent | 4cd099cd8595d11956e92bf2cab4f6d8f3fa3242 (diff) | |
download | gdb-eb557a121edaebd17d600c2558a17f4f6ad920bb.tar.gz |
import gdb-1999-05-25 snapshot
Diffstat (limited to 'gdb/jv-valprint.c')
-rw-r--r-- | gdb/jv-valprint.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/jv-valprint.c b/gdb/jv-valprint.c index 797c16a9123..a19245a937a 100644 --- a/gdb/jv-valprint.c +++ b/gdb/jv-valprint.c @@ -30,6 +30,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "c-lang.h" #include "annotate.h" +/* Local functions */ + +static void java_print_value_fields PARAMS ((struct type *type, char *valaddr, CORE_ADDR address, GDB_FILE *stream, int format, int recurse, enum val_prettyprint pretty)); + + int java_value_print (val, stream, format, pretty) value_ptr val; @@ -230,7 +235,7 @@ java_value_print (val, stream, format, pretty) DONT_PRINT is an array of baseclass types that we should not print, or zero if called from top level. */ -void +static void java_print_value_fields (type, valaddr, address, stream, format, recurse, pretty) struct type *type; |