diff options
author | Jason Molenda <jmolenda@apple.com> | 2000-02-02 00:21:19 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2000-02-02 00:21:19 +0000 |
commit | d9fcf2fb1c12d48f657c974dc5b6898022bf9ccf (patch) | |
tree | 174ea6281f2933a803a1a4dc262133a462934b6d /gdb/ch-lang.c | |
parent | da59e08184255e09e51e54bb356e4448d33b2245 (diff) | |
download | gdb-d9fcf2fb1c12d48f657c974dc5b6898022bf9ccf.zip gdb-d9fcf2fb1c12d48f657c974dc5b6898022bf9ccf.tar.gz gdb-d9fcf2fb1c12d48f657c974dc5b6898022bf9ccf.tar.bz2 |
import gdb-2000-02-01 snapshot
Diffstat (limited to 'gdb/ch-lang.c')
-rw-r--r-- | gdb/ch-lang.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/ch-lang.c b/gdb/ch-lang.c index c3a3d90..d56a2dc 100644 --- a/gdb/ch-lang.c +++ b/gdb/ch-lang.c @@ -1,5 +1,5 @@ /* Chill language support routines for GDB, the GNU debugger. - Copyright 1992, 1995, 1996 Free Software Foundation, Inc. + Copyright 1992, 1995, 1996, 2000 Free Software Foundation, Inc. This file is part of GDB. @@ -44,11 +44,11 @@ static value_ptr static struct type * chill_create_fundamental_type PARAMS ((struct objfile *, int)); -static void -chill_printstr PARAMS ((GDB_FILE * stream, char *string, unsigned int length, int width, int force_ellipses)); +static void chill_printstr (struct ui_file * stream, char *string, + unsigned int length, int width, + int force_ellipses); -static void -chill_printchar PARAMS ((int, GDB_FILE *)); +static void chill_printchar (int, struct ui_file *); /* For now, Chill uses a simple mangling algorithm whereby you simply discard everything after the occurance of two successive CPLUS_MARKER @@ -85,7 +85,7 @@ chill_demangle (mangled) static void chill_printchar (c, stream) register int c; - GDB_FILE *stream; + struct ui_file *stream; { c &= 0xFF; /* Avoid sign bit follies */ @@ -115,7 +115,7 @@ chill_printchar (c, stream) static void chill_printstr (stream, string, length, width, force_ellipses) - GDB_FILE *stream; + struct ui_file *stream; char *string; unsigned int length; int width; |