mirror of git://gcc.gnu.org/git/gcc.git
hash.c, [...]: Replace "GNU CC" with "GCC".
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m, makefile.dos, misc.c, nil_method.c, objects.c, sarray.c, selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c, thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c, thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c, thr-win32.c, thr.c: Replace "GNU CC" with "GCC". From-SVN: r67134
This commit is contained in:
parent
25f57a0e23
commit
38709cad91
|
@ -1,5 +1,11 @@
|
||||||
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
|
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||||
|
|
||||||
|
* hash.c, init.c, libobjc.def, libobjc_entry.c, linking.m,
|
||||||
|
makefile.dos, misc.c, nil_method.c, objects.c, sarray.c,
|
||||||
|
selector.c, sendmsg.c, thr-dce.c, thr-decosf1.c, thr-irix.c,
|
||||||
|
thr-mach.c, thr-objc.c, thr-os2.c, thr-posix.c, thr-pthreads.c,
|
||||||
|
thr-rtems.c, thr-single.c, thr-solaris.c, thr-vxworks.c,
|
||||||
|
thr-win32.c, thr.c: Replace "GNU CC" with "GCC".
|
||||||
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
|
* Makefile.in, NXConstStr.m, Object.m, Protocol.m, archive.c,
|
||||||
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
|
class.c, encoding.c, gc.c, objc/NXConstStr.h, objc/Object.h,
|
||||||
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
|
objc/Protocol.h, objc/encoding.h, objc/hash.h, objc/objc-api.h,
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
/* Hash tables for Objective C internal structures
|
/* Hash tables for Objective C internal structures
|
||||||
Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify
|
GCC is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 2, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful,
|
GCC is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
Contributed by Kresten Krab Thorup
|
Contributed by Kresten Krab Thorup
|
||||||
+load support contributed by Ovidiu Predescu <ovidiu@net-community.com>
|
+load support contributed by Ovidiu Predescu <ovidiu@net-community.com>
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* As a special exception, if you link this library with files compiled with
|
/* As a special exception, if you link this library with files compiled with
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
; Copyright (C) 1997 Free Software Foundation, Inc.
|
; Copyright (C) 1997 Free Software Foundation, Inc.
|
||||||
; Contributed by Scott Christley <scottc@net-community.com>
|
; Contributed by Scott Christley <scottc@net-community.com>
|
||||||
;
|
;
|
||||||
; This file is part of GNU CC.
|
; This file is part of GCC.
|
||||||
;
|
;
|
||||||
; GNU CC is free software; you can redistribute it and/or modify it under the
|
; GCC is free software; you can redistribute it and/or modify it under the
|
||||||
; terms of the GNU General Public License as published by the Free Software
|
; terms of the GNU General Public License as published by the Free Software
|
||||||
; Foundation; either version 2, or (at your option) any later version.
|
; Foundation; either version 2, or (at your option) any later version.
|
||||||
;
|
;
|
||||||
; GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
; details.
|
; details.
|
||||||
;
|
;
|
||||||
; You should have received a copy of the GNU General Public License along with
|
; You should have received a copy of the GNU General Public License along with
|
||||||
; GNU CC; see the file COPYING. If not, write to the Free Software
|
; GCC; see the file COPYING. If not, write to the Free Software
|
||||||
; Foundation, 59 Temple Place - Suite 330,
|
; Foundation, 59 Temple Place - Suite 330,
|
||||||
; Boston, MA 02111-1307, USA.
|
; Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
|
@ -2,20 +2,20 @@
|
||||||
Copyright (C) 1997 Free Software Foundation, Inc.
|
Copyright (C) 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Scott Christley <scottc@net-community.com>
|
Contributed by Scott Christley <scottc@net-community.com>
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it
|
GCC is free software; you can redistribute it and/or modify it
|
||||||
under the terms of the GNU General Public License as published by the
|
under the terms of the GNU General Public License as published by the
|
||||||
Free Software Foundation; either version 2, or (at your option) any
|
Free Software Foundation; either version 2, or (at your option) any
|
||||||
later version.
|
later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT
|
GCC is distributed in the hope that it will be useful, but WITHOUT
|
||||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to the Free
|
along with GCC; see the file COPYING. If not, write to the Free
|
||||||
Software Foundation, 59 Temple Place - Suite 330,
|
Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,20 +2,20 @@
|
||||||
Copyright (C) 1997 Free Software Foundation, Inc.
|
Copyright (C) 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Ovidiu Predescu (ovidiu@net-community.com).
|
Contributed by Ovidiu Predescu (ovidiu@net-community.com).
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify
|
GCC is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 2, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful,
|
GCC is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
# GNU Objective C Runtime Makefile for compiling with djgpp
|
# GNU Objective C Runtime Makefile for compiling with djgpp
|
||||||
# Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
|
# Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
|
||||||
#
|
#
|
||||||
# This file is part of GNU CC.
|
# This file is part of GCC.
|
||||||
#
|
#
|
||||||
# GNU CC is free software; you can redistribute it and/or modify it under the
|
# GCC is free software; you can redistribute it and/or modify it under the
|
||||||
# terms of the GNU General Public License as published by the Free Software
|
# terms of the GNU General Public License as published by the Free Software
|
||||||
# Foundation; either version 2, or (at your option) any later version.
|
# Foundation; either version 2, or (at your option) any later version.
|
||||||
#
|
#
|
||||||
# GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
# GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
# details.
|
# details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along with
|
# You should have received a copy of the GNU General Public License along with
|
||||||
# GNU CC; see the file COPYING. If not, write to the Free Software
|
# GCC; see the file COPYING. If not, write to the Free Software
|
||||||
# Foundation, 59 Temple Place - Suite 330,
|
# Foundation, 59 Temple Place - Suite 330,
|
||||||
# Boston, MA 02111-1307, USA.
|
# Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
|
@ -3,20 +3,20 @@
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
Contributed by Kresten Krab Thorup
|
Contributed by Kresten Krab Thorup
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it
|
GCC is free software; you can redistribute it and/or modify it
|
||||||
under the terms of the GNU General Public License as published by the
|
under the terms of the GNU General Public License as published by the
|
||||||
Free Software Foundation; either version 2, or (at your option) any
|
Free Software Foundation; either version 2, or (at your option) any
|
||||||
later version.
|
later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT
|
GCC is distributed in the hope that it will be useful, but WITHOUT
|
||||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||||
for more details.
|
for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to the Free
|
along with GCC; see the file COPYING. If not, write to the Free
|
||||||
Software Foundation, 59 Temple Place - Suite 330,
|
Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1993, 1995, 1996, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1993, 1995, 1996, 2002 Free Software Foundation, Inc.
|
||||||
Contributed by Kresten Krab Thorup
|
Contributed by Kresten Krab Thorup
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc.
|
Copyright (C) 1993, 1995, 1996 Free Software Foundation, Inc.
|
||||||
Contributed by Kresten Krab Thorup
|
Contributed by Kresten Krab Thorup
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
/* Sparse Arrays for Objective C dispatch tables
|
/* Sparse Arrays for Objective C dispatch tables
|
||||||
Copyright (C) 1993, 1995, 1996, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1993, 1995, 1996, 2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify
|
GCC is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 2, or (at your option)
|
the Free Software Foundation; either version 2, or (at your option)
|
||||||
any later version.
|
any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful,
|
GCC is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1993, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1993, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
|
||||||
Contributed by Kresten Krab Thorup
|
Contributed by Kresten Krab Thorup
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
/* As a special exception, if you link this library with files compiled with
|
/* As a special exception, if you link this library with files compiled with
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
2001, 2002 Free Software Foundation, Inc.
|
2001, 2002 Free Software Foundation, Inc.
|
||||||
Contributed by Kresten Krab Thorup
|
Contributed by Kresten Krab Thorup
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -4,19 +4,19 @@
|
||||||
Modified for Mach threads by Bill Bumgarner <bbum@friday.com>
|
Modified for Mach threads by Bill Bumgarner <bbum@friday.com>
|
||||||
Condition functions added by Mircea Oancea <mircea@first.elcom.pub.ro>
|
Condition functions added by Mircea Oancea <mircea@first.elcom.pub.ro>
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
/* GNU Objective C Runtime Thread Interface.
|
/* GNU Objective C Runtime Thread Interface.
|
||||||
Copyright (C) 1999 Free Software Foundation, Inc.
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Thomas Baier (baier@ci.tuwien.ac.at)
|
Contributed by Thomas Baier (baier@ci.tuwien.ac.at)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -4,19 +4,19 @@
|
||||||
Modified for Linux/Pthreads by Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
|
Modified for Linux/Pthreads by Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
|
||||||
Modified for posix compliance by Chris Ball (cball@fmco.com)
|
Modified for posix compliance by Chris Ball (cball@fmco.com)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
Contributed by Scott Christley <scottc@net-community.com>
|
Contributed by Scott Christley <scottc@net-community.com>
|
||||||
Condition functions added by: Mircea Oancea <mircea@first.elcom.pub.ro>
|
Condition functions added by: Mircea Oancea <mircea@first.elcom.pub.ro>
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with GNU CC; see the file COPYING. If not, write to
|
along with GCC; see the file COPYING. If not, write to
|
||||||
the Free Software Foundation, 59 Temple Place - Suite 330,
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -4,19 +4,19 @@
|
||||||
Renamed from thr-vxworks.c to thr-rtems.c by
|
Renamed from thr-vxworks.c to thr-rtems.c by
|
||||||
Ralf Corsepius (corsepiu@faw.uni-ulm.de)
|
Ralf Corsepius (corsepiu@faw.uni-ulm.de)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
Conditions added by Mircea Oancea (mircea@first.elcom.pub.ro)
|
Conditions added by Mircea Oancea (mircea@first.elcom.pub.ro)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||||
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
Contributed by Galen C. Hunt (gchunt@cs.rochester.edu)
|
||||||
|
|
||||||
This file is part of GNU CC.
|
This file is part of GCC.
|
||||||
|
|
||||||
GNU CC is free software; you can redistribute it and/or modify it under the
|
GCC is free software; you can redistribute it and/or modify it under the
|
||||||
terms of the GNU General Public License as published by the Free Software
|
terms of the GNU General Public License as published by the Free Software
|
||||||
Foundation; either version 2, or (at your option) any later version.
|
Foundation; either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along with
|
You should have received a copy of the GNU General Public License along with
|
||||||
GNU CC; see the file COPYING. If not, write to the Free Software
|
GCC; see the file COPYING. If not, write to the Free Software
|
||||||
Foundation, 59 Temple Place - Suite 330,
|
Foundation, 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue