diff options
author | John Gilmore <gnu@cygnus> | 1993-01-31 03:56:56 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1993-01-31 03:56:56 +0000 |
commit | 3d9b9577e09e116f8c978984bc6b8b76081a8129 (patch) | |
tree | e30c87903936653d1b8105b7741d495ce94afc40 | |
parent | 145887f06a8843e0b80a5740a213b863eec70054 (diff) | |
download | gdb-3d9b9577e09e116f8c978984bc6b8b76081a8129.zip gdb-3d9b9577e09e116f8c978984bc6b8b76081a8129.tar.gz gdb-3d9b9577e09e116f8c978984bc6b8b76081a8129.tar.bz2 |
* Makefile.in (HFILES): Add typeprint.h.
* typeprint.[ch]: Update copyrights.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/typeprint.c | 2 | ||||
-rw-r--r-- | gdb/typeprint.h | 4 |
4 files changed, 8 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 04d4f50..850c125 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 30 19:55:52 1993 John Gilmore (gnu@cygnus.com) + + * Makefile.in (HFILES): Add typeprint.h. + * typeprint.[ch]: Update copyrights. + Thu Jan 28 19:09:02 1993 John Gilmore (gnu@cygnus.com) * Makefile.in: Update to match doc/ subdir changes. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7a8c96c..9fb34f3 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -260,7 +260,7 @@ HFILES= breakpoint.h buildsym.h call-cmds.h command.h defs.h \ gdb-stabs.h ieee-float.h inferior.h language.h \ minimon.h objfiles.h parser-defs.h partial-stab.h \ serial.h signals.h solib.h symfile.h symtab.h stabsread.h \ - target.h terminal.h xcoffsolib.h value.h \ + target.h terminal.h typeprint.h xcoffsolib.h value.h \ tm-68k.h tm-hppa.h tm-i960.h tm-sparc.h tm-sunos.h tm-sysv4.h \ xm-m68k.h xm-sparc.h xm-sysv4.h xm-vax.h \ nm-i386bsd.h nm-i386mach.h nm-i386sco.h nm-i386v.h nm-i386v4.h nm-irix3.h \ diff --git a/gdb/typeprint.c b/gdb/typeprint.c index fdd954b..52ac311 100644 --- a/gdb/typeprint.c +++ b/gdb/typeprint.c @@ -1,5 +1,5 @@ /* Language independent support for printing types for GDB, the GNU debugger. - Copyright 1986, 1988, 1989, 1991 Free Software Foundation, Inc. + Copyright 1986, 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/typeprint.h b/gdb/typeprint.h index 806f02f..e6740db 100644 --- a/gdb/typeprint.h +++ b/gdb/typeprint.h @@ -1,5 +1,5 @@ /* Language independent support for printing types for GDB, the GNU debugger. - Copyright 1986, 1988, 1989, 1991 Free Software Foundation, Inc. + Copyright 1986, 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc. This file is part of GDB. @@ -17,7 +17,5 @@ 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ - void print_type_scalar PARAMS ((struct type *type, LONGEST, FILE *)); - |