import gdb-2000-02-01 snapshot

This commit is contained in:
Jason Molenda 2000-02-02 00:21:19 +00:00
parent da59e08184
commit d9fcf2fb1c
89 changed files with 1329 additions and 656 deletions

View file

@ -1,5 +1,5 @@
/* Scheme/Guile language support routines for GDB, the GNU debugger.
Copyright 1995 Free Software Foundation, Inc.
Copyright 1995, 2000 Free Software Foundation, Inc.
This file is part of GDB.
@ -36,7 +36,9 @@ static value_ptr evaluate_subexp_scm PARAMS ((struct type *, struct expression *
int *, enum noside));
static value_ptr scm_lookup_name PARAMS ((char *));
static int in_eval_c PARAMS ((void));
static void scm_printstr PARAMS ((GDB_FILE * stream, char *string, unsigned int length, int width, int force_ellipses));
static void scm_printstr (struct ui_file * stream, char *string,
unsigned int length, int width,
int force_ellipses);
extern struct type **CONST_PTR (c_builtin_types[]);
@ -45,14 +47,14 @@ struct type *builtin_type_scm;
void
scm_printchar (c, stream)
int c;
GDB_FILE *stream;
struct ui_file *stream;
{
fprintf_filtered (stream, "#\\%c", c);
}
static void
scm_printstr (stream, string, length, width, force_ellipses)
GDB_FILE *stream;
struct ui_file *stream;
char *string;
unsigned int length;
int width;