diff options
author | David Taylor <taylor@redhat.com> | 1998-12-28 23:06:13 +0000 |
---|---|---|
committer | David Taylor <taylor@redhat.com> | 1998-12-28 23:06:13 +0000 |
commit | 4ef1f4677390c085543fe80eec41b0fe5d58ddca (patch) | |
tree | d0e8320e4871a81733155e8ce653507dd3d64825 /gdb/c-lang.h | |
parent | d6fdf61c78fbce1dad62cd1022e606fdaaad4202 (diff) | |
download | gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.zip gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.tar.gz gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.tar.bz2 |
hp merge changes -- too numerous to mention here; see ChangeLog and
ChangeLog-gdbtk for details.
Diffstat (limited to 'gdb/c-lang.h')
-rw-r--r-- | gdb/c-lang.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/gdb/c-lang.h b/gdb/c-lang.h index b9536f5..28486fd 100644 --- a/gdb/c-lang.h +++ b/gdb/c-lang.h @@ -17,9 +17,12 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef __STDC__ /* Forward decls for prototypes */ -struct value; -#endif + +#if !defined (C_LANG_H) +#define C_LANG_H 1 + +#include "value.h" + extern int c_parse PARAMS ((void)); /* Defined in c-exp.y */ @@ -31,7 +34,7 @@ extern void /* Defined in c-typeprint.c */ c_print_type PARAMS ((struct type *, char *, GDB_FILE *, int, int)); extern int -c_val_print PARAMS ((struct type *, char *, CORE_ADDR, GDB_FILE *, int, int, +c_val_print PARAMS ((struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int, int, enum val_prettyprint)); extern int @@ -70,7 +73,7 @@ extern void cp_print_class_method PARAMS ((char *, struct type *, GDB_FILE *)); extern void -cp_print_value_fields PARAMS ((struct type *, char *, CORE_ADDR, +cp_print_value_fields PARAMS ((struct type *, struct type *, char *, int, CORE_ADDR, GDB_FILE *, int, int, enum val_prettyprint, struct type**, int)); @@ -79,3 +82,6 @@ cp_is_vtbl_ptr_type PARAMS ((struct type *)); extern int cp_is_vtbl_member PARAMS ((struct type *)); + + +#endif /* !defined (C_LANG_H) */ |