* Makefile.in (gdbtypes.o, varobj.o): Depend on wrapper.h.

* wrapper.h (gdb_value_subscript, wrap_value_subscript): Add
	prototypes.
This commit is contained in:
Eli Zaretskii 2000-05-15 07:10:04 +00:00
parent d1e3cf4998
commit 4f0aafb38a
3 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (gdbtypes.o, varobj.o): Depend on wrapper.h.
* wrapper.h (gdb_value_subscript, wrap_value_subscript): Add
prototypes.
Mon May 15 15:31:30 2000 Andrew Cagney <cagney@b1.cygnus.com>
* valops.c (hand_function_call): Replace #ifdef

View File

@ -1367,7 +1367,7 @@ arch-utils.o: arch-utils.c $(defs_h) $(bfd_h) $(gdbcmd_h) \
gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
$(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
$(value_h) gdb_string.h
$(value_h) gdb_string.h wrapper.h
go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) gdb_wait.h $(gdbcore_h) \
$(command_h) $(floatformat_h) target.h
@ -1944,7 +1944,7 @@ gdb-events.o: gdb-events.c gdb-events.h $(defs_h) $(gdbcmd_h)
ui-out.o: ui-out.c $(defs_h) $(ui_out_h) expression.h language.h
cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h)
varobj.o: varobj.c $(defs_h) $(frame_h) $(value_h) \
$(language_h) valprint.h varobj.h
$(language_h) valprint.h varobj.h wrapper.h
$(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
wrapper.o: wrapper.c $(defs_h) $(frame_h) $(value_h) wrapper.h

View File

@ -31,6 +31,9 @@ extern int gdb_value_fetch_lazy PARAMS ((value_ptr));
extern int gdb_value_equal PARAMS ((value_ptr, value_ptr, int *));
extern int gdb_value_subscript PARAMS ((value_ptr, value_ptr, value_ptr *));
extern int wrap_value_subscript PARAMS ((char *));
extern int gdb_value_ind PARAMS ((value_ptr val, value_ptr * rval));
extern int gdb_parse_and_eval_type (char *, int, struct type **);