diff options
author | Jason Molenda <jsm@bugshack.cygnus.com> | 2000-02-02 00:21:19 +0000 |
---|---|---|
committer | Jason Molenda <jsm@bugshack.cygnus.com> | 2000-02-02 00:21:19 +0000 |
commit | ed3cebbbd8c84047fa914f111398876cc6e845c2 (patch) | |
tree | 57074a05fd2c90fb20318d6b83680988883b9450 /gdb/c-lang.c | |
parent | 485c0dcc7c141eca8c828f81ee2af335d32c3a8e (diff) | |
download | gdb-ed3cebbbd8c84047fa914f111398876cc6e845c2.tar.gz |
import gdb-2000-02-01 snapshot
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index 16046cf016a..35f86a89391 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -1,5 +1,5 @@ /* C language support routines for GDB, the GNU debugger. - Copyright 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright 1992, 1993, 1994, 2000 Free Software Foundation, Inc. This file is part of GDB. @@ -27,7 +27,7 @@ #include "c-lang.h" extern void _initialize_c_language PARAMS ((void)); -static void c_emit_char PARAMS ((int c, GDB_FILE * stream, int quoter)); +static void c_emit_char (int c, struct ui_file * stream, int quoter); /* Print the character C on STREAM as part of the contents of a literal string whose delimiter is QUOTER. Note that that format for printing @@ -36,7 +36,7 @@ static void c_emit_char PARAMS ((int c, GDB_FILE * stream, int quoter)); static void c_emit_char (c, stream, quoter) register int c; - GDB_FILE *stream; + struct ui_file *stream; int quoter; { c &= 0xFF; /* Avoid sign bit follies */ @@ -84,7 +84,7 @@ c_emit_char (c, stream, quoter) void c_printchar (c, stream) int c; - GDB_FILE *stream; + struct ui_file *stream; { fputc_filtered ('\'', stream); LA_EMIT_CHAR (c, stream, '\''); @@ -99,7 +99,7 @@ c_printchar (c, stream) void c_printstr (stream, string, length, width, force_ellipses) - GDB_FILE *stream; + struct ui_file *stream; char *string; unsigned int length; int width; |