diff --git a/ChangeLog b/ChangeLog index a7841cc20..b6353b6d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,122 @@ Wed Apr 17 08:56:09 1996 Andrew McCallum + Major renaming! + "GNU Objective C Class Library" -> "Gnustep Base Library" + libobjects.a -> libgnustep-base.a + libobjects.tar.gz -> gstep-base.tar.gz + -> + OBJECTS_* -> GNUSTEP_BASE_* + objects_*() -> o_*() + R. Andrew McCallum -> Andrew Kachites McCallum + (my pre-marriage name) (my post-marriage name) + ...and more... + + * src/include/*.h: Rename all #ifndef macro names to + ...GNUSTEP_BASE_INCLUDE. + + * Rename all `objects_' to `o_'. This mostly affects Albin Jones' + map tables, hash table, etc. + + * src/NSGSet.m ([NSGSet -isEqual:]): Call isEqualToSet: (in + superclass). + + * checks/pipes.m: Include + + * src/objc/HashTable.h: Use preface.h instead of stdobjects.h. + + * src/CStream.m ([CStream -writeSignature]): Use new version macro + names. + + * src/include/fake-main.h (main): Define as + gnustep_base_user_main, not LibobjectsMain. + * src/NSProcessInfo.m (__gnustep_base_subinit_args__): Renamed + from libobjects... + (main): Use gnustep_base_user_main, not LibobjectsMain. + + * checks/fref.m (test_fref): Make ARRAY a NSMutableArray, not a + NSArray. + ([SubFoo -encodeWithCoder:]): Add printf. + ([Foo -encodeWithCoder:]): Likewise. + + * src/o_vscanf.c: Include objc-malloc.h from gnustep/base. + + * src/Makefile.in (Foundation): Add step to get rid of old + Foundation directory that would come from a CVS checkout. + + * src/include/String.h: Don't include . + Don't have String protocol inherit NSString protocol. We were + having trouble with circular dependancies. + * src/include/Streaming.h: Include String.h, not NSString.h. + + * src/include/preface.h.in: Use __preface_h_... instead of + __stdobjects_h... for wrapper. Include files from gnustep/base. + Include fake-main.h, instead of LibobjectsMain.h. + + * src/Makefile.in (include/preface.h): Make substitutions for + macro name, as well as value. + + * Makeconf (LIBRARY_VAR): New variable. + + * src/Makefile.in (all): Add dependancy on `Foundation'. + (Foundation): New target. + + * Change all #include to #include . + + * src/include/preface.h.in: All Makefile-maintained #defines, now + have the macro name inserted by Makefile, not just the value. + Comment out objects_version global variable and friends. + (LAMBDA): Macro removed. + (LAMBDA_VOID_PERFORM): Macro removed. + (LAMBDA_ID_PERFORM): Macro removed. + (LAMBDA_BOOL_PERFORM): Macro removed. + * src/preface.m: Update names of global const char's. + + * Makefile.in: Remove/rename all mention of `objects'. + * configure.in: Likewise. + * examples/Makefile.in: Likewise. + * checks/Makefile.in: Likewise. + + * Makeconf (LIBRARY_NAME): Remove `lib' prefix. + * src/Makefile.in: Don't assume the `lib' prefix is included in + $(LIBRARY_NAME). + + * Makeconf (PACKAGE_NAME): New variable. + (LIBRARY_NAME): New variable. + (rcs-list-locked): Target removed. + + * Version: Removed `OBJECTS_' prefix. + + * src/Makefile.in: Rename all occurrences of `objects/' to + `include/'. Rename all occurrences of `Foundation/' to + `include/'. Rename all occurrences of `libobjects' to + `$(LIBRARY_NAME)'. Rename all occurrences of `OBJECTS_*VERSION' + to `*VERSION'. + (GNU_NEXT_INCLUDES): Renamed from OBJECTS_NEXT_INCLUDES. + (gnustep/base): New target; make symbolic link to `include'. + (all): Added dependancy on gnustep/base. + (install): Put the include files in gnustep/base. Make a link from + $(includedir)/Foundation to $(includedir)/gnustep/base. + (installdirs): Make $(includedir)/gnustep/base, not objects and + Foundation include directories. + (GNU_MFILES): stdobjects.m renamed to preface.m. + (GNU_HEADERS): LibobjectsMain.h renamed to fake-main.h. objects.h + renamed to all.h. + (HEADERS_INSTALL): stdobjects.h renamed to preface.h. + (maintainer-clean): Likewise. + (DIST_FILES): stdobjects.h.in renamed to preface.h.in. + (RCS_FILES): Likewise. + (include/preface.h): Target renamed from stdobjects.h. + (preface$(OEXT)): Likewise. + * src/preface.m: File renamed from stdobjects.m. + * src/include/preface.h: File renamed from stdobjects.h. + * src/include/fake-main.h: File renamed from LibobjectsMain.h. + * src/include/all.h: File renamed from objects.h. + + * configure.in (AC_OUTPUT): do src/include/config.h, not + src/objects/config.h. + + * src/objects/*, src/Foundation/*: Files moved to src/include. + * src/Foundation/NSString.h: Insert contents of * src/Foundation/NSSet.h: Insert contents of diff --git a/Headers/gnustep/base/Archiver.h b/Headers/gnustep/base/Archiver.h index 7a20b91af..b6009f16a 100644 --- a/Headers/gnustep/base/Archiver.h +++ b/Headers/gnustep/base/Archiver.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: January 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Array.h b/Headers/gnustep/base/Array.h index 8de05c58a..dcd85000f 100644 --- a/Headers/gnustep/base/Array.h +++ b/Headers/gnustep/base/Array.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/ArrayPrivate.h b/Headers/gnustep/base/ArrayPrivate.h index 0263ed468..35acb0e3d 100644 --- a/Headers/gnustep/base/ArrayPrivate.h +++ b/Headers/gnustep/base/ArrayPrivate.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/AutoreleasePool.h b/Headers/gnustep/base/AutoreleasePool.h index 870859322..7c5cb4f31 100644 --- a/Headers/gnustep/base/AutoreleasePool.h +++ b/Headers/gnustep/base/AutoreleasePool.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/AutoreleaseStack.h b/Headers/gnustep/base/AutoreleaseStack.h index 4735a1e65..27bd9b87f 100644 --- a/Headers/gnustep/base/AutoreleaseStack.h +++ b/Headers/gnustep/base/AutoreleaseStack.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Bag.h b/Headers/gnustep/base/Bag.h index 240b83d35..ff810e466 100644 --- a/Headers/gnustep/base/Bag.h +++ b/Headers/gnustep/base/Bag.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/BinaryCStream.h b/Headers/gnustep/base/BinaryCStream.h index 2e1371d28..d45bb37db 100644 --- a/Headers/gnustep/base/BinaryCStream.h +++ b/Headers/gnustep/base/BinaryCStream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/BinaryTree.h b/Headers/gnustep/base/BinaryTree.h index c5b62cd08..6a42884fa 100644 --- a/Headers/gnustep/base/BinaryTree.h +++ b/Headers/gnustep/base/BinaryTree.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/BinaryTreeEltNode.h b/Headers/gnustep/base/BinaryTreeEltNode.h index 3956fad9e..7da3e159d 100644 --- a/Headers/gnustep/base/BinaryTreeEltNode.h +++ b/Headers/gnustep/base/BinaryTreeEltNode.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/BinaryTreeNode.h b/Headers/gnustep/base/BinaryTreeNode.h index 199e2490e..ec31cf4b9 100644 --- a/Headers/gnustep/base/BinaryTreeNode.h +++ b/Headers/gnustep/base/BinaryTreeNode.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/CStream.h b/Headers/gnustep/base/CStream.h index 12b4c4717..99296c4bf 100644 --- a/Headers/gnustep/base/CStream.h +++ b/Headers/gnustep/base/CStream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/CStreaming.h b/Headers/gnustep/base/CStreaming.h index 96c60797e..3dc50472d 100644 --- a/Headers/gnustep/base/CStreaming.h +++ b/Headers/gnustep/base/CStreaming.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/CircularArray.h b/Headers/gnustep/base/CircularArray.h index 8fcd636d5..c31410d74 100644 --- a/Headers/gnustep/base/CircularArray.h +++ b/Headers/gnustep/base/CircularArray.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/CircularArrayPrivate.h b/Headers/gnustep/base/CircularArrayPrivate.h index 4196602bc..b2a951b24 100644 --- a/Headers/gnustep/base/CircularArrayPrivate.h +++ b/Headers/gnustep/base/CircularArrayPrivate.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Coder.h b/Headers/gnustep/base/Coder.h index 81c6c318f..d7c9c0493 100644 --- a/Headers/gnustep/base/Coder.h +++ b/Headers/gnustep/base/Coder.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/CoderPrivate.h b/Headers/gnustep/base/CoderPrivate.h index 2a0a300a7..df582d9c2 100644 --- a/Headers/gnustep/base/CoderPrivate.h +++ b/Headers/gnustep/base/CoderPrivate.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: February 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Coding.h b/Headers/gnustep/base/Coding.h index 0151942d6..f078c3d5a 100644 --- a/Headers/gnustep/base/Coding.h +++ b/Headers/gnustep/base/Coding.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Collecting.h b/Headers/gnustep/base/Collecting.h index 850960959..361b2070e 100644 --- a/Headers/gnustep/base/Collecting.h +++ b/Headers/gnustep/base/Collecting.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Collection.h b/Headers/gnustep/base/Collection.h index 7bd654c34..fbb722f81 100644 --- a/Headers/gnustep/base/Collection.h +++ b/Headers/gnustep/base/Collection.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/CollectionPrivate.h b/Headers/gnustep/base/CollectionPrivate.h index 757ef6de7..337019ad9 100644 --- a/Headers/gnustep/base/CollectionPrivate.h +++ b/Headers/gnustep/base/CollectionPrivate.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/ConnectedCoder.h b/Headers/gnustep/base/ConnectedCoder.h index 7fae531ad..314438229 100644 --- a/Headers/gnustep/base/ConnectedCoder.h +++ b/Headers/gnustep/base/ConnectedCoder.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Connection.h b/Headers/gnustep/base/Connection.h index 19c48558f..f7e844d1a 100644 --- a/Headers/gnustep/base/Connection.h +++ b/Headers/gnustep/base/Connection.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/DelegatePool.h b/Headers/gnustep/base/DelegatePool.h index 2dd06bd94..28ee664c1 100644 --- a/Headers/gnustep/base/DelegatePool.h +++ b/Headers/gnustep/base/DelegatePool.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Dictionary.h b/Headers/gnustep/base/Dictionary.h index d462953e5..e046a8844 100644 --- a/Headers/gnustep/base/Dictionary.h +++ b/Headers/gnustep/base/Dictionary.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Enumerating.h b/Headers/gnustep/base/Enumerating.h index 6d51591cd..c39204fc8 100644 --- a/Headers/gnustep/base/Enumerating.h +++ b/Headers/gnustep/base/Enumerating.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: February 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/GapArray.h b/Headers/gnustep/base/GapArray.h index 08af64b0f..c9a024195 100644 --- a/Headers/gnustep/base/GapArray.h +++ b/Headers/gnustep/base/GapArray.h @@ -4,7 +4,7 @@ Written by: Kresten Krab Thorup Dept. of Mathematics and Computer Science, Aalborg U., Denmark - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/GapArrayPrivate.h b/Headers/gnustep/base/GapArrayPrivate.h index 66a7d0e48..33092e1ee 100644 --- a/Headers/gnustep/base/GapArrayPrivate.h +++ b/Headers/gnustep/base/GapArrayPrivate.h @@ -6,7 +6,7 @@ Copyright (C) 1993,1994 Kresten Krab Thorup Dept. of Mathematics and Computer Science, Aalborg U., Denmark - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Heap.h b/Headers/gnustep/base/Heap.h index 0b8d9e532..b9881fbdb 100644 --- a/Headers/gnustep/base/Heap.h +++ b/Headers/gnustep/base/Heap.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/IndexedCollecting.h b/Headers/gnustep/base/IndexedCollecting.h index 903cfab9b..d18db17f4 100644 --- a/Headers/gnustep/base/IndexedCollecting.h +++ b/Headers/gnustep/base/IndexedCollecting.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/IndexedCollection.h b/Headers/gnustep/base/IndexedCollection.h index 3113e4375..1b338d324 100644 --- a/Headers/gnustep/base/IndexedCollection.h +++ b/Headers/gnustep/base/IndexedCollection.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/IndexedCollectionPrivate.h b/Headers/gnustep/base/IndexedCollectionPrivate.h index 5a2d7426c..6d56d6921 100644 --- a/Headers/gnustep/base/IndexedCollectionPrivate.h +++ b/Headers/gnustep/base/IndexedCollectionPrivate.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/InvalidationListening.h b/Headers/gnustep/base/InvalidationListening.h index 16ecbbdbb..f52939381 100644 --- a/Headers/gnustep/base/InvalidationListening.h +++ b/Headers/gnustep/base/InvalidationListening.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Invoking.h b/Headers/gnustep/base/Invoking.h index 4249bc822..a2f11bac8 100644 --- a/Headers/gnustep/base/Invoking.h +++ b/Headers/gnustep/base/Invoking.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: February 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/KeyedCollecting.h b/Headers/gnustep/base/KeyedCollecting.h index aee63b1a8..6cd2d69ad 100644 --- a/Headers/gnustep/base/KeyedCollecting.h +++ b/Headers/gnustep/base/KeyedCollecting.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/KeyedCollection.h b/Headers/gnustep/base/KeyedCollection.h index 5a929cc5f..f519bf0de 100644 --- a/Headers/gnustep/base/KeyedCollection.h +++ b/Headers/gnustep/base/KeyedCollection.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/LinkedList.h b/Headers/gnustep/base/LinkedList.h index c23e3b135..a3580ce81 100644 --- a/Headers/gnustep/base/LinkedList.h +++ b/Headers/gnustep/base/LinkedList.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/LinkedListEltNode.h b/Headers/gnustep/base/LinkedListEltNode.h index 81de94f3d..667dfe5cd 100644 --- a/Headers/gnustep/base/LinkedListEltNode.h +++ b/Headers/gnustep/base/LinkedListEltNode.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/LinkedListNode.h b/Headers/gnustep/base/LinkedListNode.h index 661092c21..43b0f35b7 100644 --- a/Headers/gnustep/base/LinkedListNode.h +++ b/Headers/gnustep/base/LinkedListNode.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Lock.h b/Headers/gnustep/base/Lock.h index 9b5898e49..d61ea83a0 100644 --- a/Headers/gnustep/base/Lock.h +++ b/Headers/gnustep/base/Lock.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Locking.h b/Headers/gnustep/base/Locking.h index 9145d5843..3ce99ae01 100644 --- a/Headers/gnustep/base/Locking.h +++ b/Headers/gnustep/base/Locking.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/MachPort.h b/Headers/gnustep/base/MachPort.h index 2e72b329d..61dfc20af 100644 --- a/Headers/gnustep/base/MachPort.h +++ b/Headers/gnustep/base/MachPort.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Magnitude.h b/Headers/gnustep/base/Magnitude.h index 266d85bd6..dd74ad59a 100644 --- a/Headers/gnustep/base/Magnitude.h +++ b/Headers/gnustep/base/Magnitude.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/MallocAddress.h b/Headers/gnustep/base/MallocAddress.h index 644c83669..ae14c2f98 100644 --- a/Headers/gnustep/base/MallocAddress.h +++ b/Headers/gnustep/base/MallocAddress.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/MappedCollector.h b/Headers/gnustep/base/MappedCollector.h index 8b953cfe1..73e7e291c 100644 --- a/Headers/gnustep/base/MappedCollector.h +++ b/Headers/gnustep/base/MappedCollector.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/MemoryStream.h b/Headers/gnustep/base/MemoryStream.h index e8c582969..4b457e1b7 100644 --- a/Headers/gnustep/base/MemoryStream.h +++ b/Headers/gnustep/base/MemoryStream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSArchiver.h b/Headers/gnustep/base/NSArchiver.h index 1576b4fef..8eb2ca85d 100644 --- a/Headers/gnustep/base/NSArchiver.h +++ b/Headers/gnustep/base/NSArchiver.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSArray.h b/Headers/gnustep/base/NSArray.h index e08855c7d..c551ccbf3 100644 --- a/Headers/gnustep/base/NSArray.h +++ b/Headers/gnustep/base/NSArray.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSAutoreleasePool.h b/Headers/gnustep/base/NSAutoreleasePool.h index 4a014a191..81dd1d329 100644 --- a/Headers/gnustep/base/NSAutoreleasePool.h +++ b/Headers/gnustep/base/NSAutoreleasePool.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSBitmapCharSet.h b/Headers/gnustep/base/NSBitmapCharSet.h index b47b15260..825e55ab0 100644 --- a/Headers/gnustep/base/NSBitmapCharSet.h +++ b/Headers/gnustep/base/NSBitmapCharSet.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSBundle.h b/Headers/gnustep/base/NSBundle.h index edd221563..9e6a674b1 100644 --- a/Headers/gnustep/base/NSBundle.h +++ b/Headers/gnustep/base/NSBundle.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSCharacterSet.h b/Headers/gnustep/base/NSCharacterSet.h index 468ef05e0..35a82e76c 100644 --- a/Headers/gnustep/base/NSCharacterSet.h +++ b/Headers/gnustep/base/NSCharacterSet.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSCoder.h b/Headers/gnustep/base/NSCoder.h index 72ef70d1f..f64080ebd 100644 --- a/Headers/gnustep/base/NSCoder.h +++ b/Headers/gnustep/base/NSCoder.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSConcreteNumber.h b/Headers/gnustep/base/NSConcreteNumber.h index 603d2b1db..d26ee6189 100644 --- a/Headers/gnustep/base/NSConcreteNumber.h +++ b/Headers/gnustep/base/NSConcreteNumber.h @@ -5,7 +5,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSConcreteValue.h b/Headers/gnustep/base/NSConcreteValue.h index 8fcde4626..387326de6 100644 --- a/Headers/gnustep/base/NSConcreteValue.h +++ b/Headers/gnustep/base/NSConcreteValue.h @@ -5,7 +5,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSData.h b/Headers/gnustep/base/NSData.h index 79bef7d91..070c7fca3 100644 --- a/Headers/gnustep/base/NSData.h +++ b/Headers/gnustep/base/NSData.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSDate.h b/Headers/gnustep/base/NSDate.h index e2b803418..811d1622d 100644 --- a/Headers/gnustep/base/NSDate.h +++ b/Headers/gnustep/base/NSDate.h @@ -1,7 +1,7 @@ /* Interface for NSDate for GNUStep Copyright (C) 1994, 1996 Free Software Foundation, Inc. - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSDictionary.h b/Headers/gnustep/base/NSDictionary.h index 0f720a72b..80921b498 100644 --- a/Headers/gnustep/base/NSDictionary.h +++ b/Headers/gnustep/base/NSDictionary.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSException.h b/Headers/gnustep/base/NSException.h index 48bc0dba1..92b8d0ab4 100644 --- a/Headers/gnustep/base/NSException.h +++ b/Headers/gnustep/base/NSException.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGArchiver.h b/Headers/gnustep/base/NSGArchiver.h index f6665ba76..c4ac28a0b 100644 --- a/Headers/gnustep/base/NSGArchiver.h +++ b/Headers/gnustep/base/NSGArchiver.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGArray.h b/Headers/gnustep/base/NSGArray.h index b85c9f227..97111996b 100644 --- a/Headers/gnustep/base/NSGArray.h +++ b/Headers/gnustep/base/NSGArray.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGCString.h b/Headers/gnustep/base/NSGCString.h index b90803bfa..c7d79e9ab 100644 --- a/Headers/gnustep/base/NSGCString.h +++ b/Headers/gnustep/base/NSGCString.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGData.h b/Headers/gnustep/base/NSGData.h index 77e596a2d..37ab62cc8 100644 --- a/Headers/gnustep/base/NSGData.h +++ b/Headers/gnustep/base/NSGData.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGDictionary.h b/Headers/gnustep/base/NSGDictionary.h index 3a05eb1ae..f7acefd19 100644 --- a/Headers/gnustep/base/NSGDictionary.h +++ b/Headers/gnustep/base/NSGDictionary.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGSet.h b/Headers/gnustep/base/NSGSet.h index 61d84e258..7198c466d 100644 --- a/Headers/gnustep/base/NSGSet.h +++ b/Headers/gnustep/base/NSGSet.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSGeometry.h b/Headers/gnustep/base/NSGeometry.h index beb321590..ce3698d14 100644 --- a/Headers/gnustep/base/NSGeometry.h +++ b/Headers/gnustep/base/NSGeometry.h @@ -4,7 +4,7 @@ * Written by: Adam Fedor * Date: 1995 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSHashTable.h b/Headers/gnustep/base/NSHashTable.h index 1ae162217..0462d05be 100644 --- a/Headers/gnustep/base/NSHashTable.h +++ b/Headers/gnustep/base/NSHashTable.h @@ -6,7 +6,7 @@ * Updated: Thu Mar 21 15:13:46 EST 1996 * Serial: 96.03.21.06 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSInvocation.h b/Headers/gnustep/base/NSInvocation.h index 5cdb839f2..dc90079ea 100644 --- a/Headers/gnustep/base/NSInvocation.h +++ b/Headers/gnustep/base/NSInvocation.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSMapTable.h b/Headers/gnustep/base/NSMapTable.h index 0b2df38ca..be0cbe46d 100644 --- a/Headers/gnustep/base/NSMapTable.h +++ b/Headers/gnustep/base/NSMapTable.h @@ -6,7 +6,7 @@ * Updated: Thu Mar 21 15:12:42 EST 1996 * Serial: 96.03.21.05 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSMethodSignature.h b/Headers/gnustep/base/NSMethodSignature.h index 50fef733a..37298f0af 100644 --- a/Headers/gnustep/base/NSMethodSignature.h +++ b/Headers/gnustep/base/NSMethodSignature.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSNotification.h b/Headers/gnustep/base/NSNotification.h index 0c4188856..0d108c7bb 100644 --- a/Headers/gnustep/base/NSNotification.h +++ b/Headers/gnustep/base/NSNotification.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSObjCRuntime.h b/Headers/gnustep/base/NSObjCRuntime.h index 38b3629ef..19e0d0a03 100644 --- a/Headers/gnustep/base/NSObjCRuntime.h +++ b/Headers/gnustep/base/NSObjCRuntime.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSObject.h b/Headers/gnustep/base/NSObject.h index 93e6994cf..1b9791a6b 100644 --- a/Headers/gnustep/base/NSObject.h +++ b/Headers/gnustep/base/NSObject.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSProcessInfo.h b/Headers/gnustep/base/NSProcessInfo.h index a58235214..49d0de77b 100644 --- a/Headers/gnustep/base/NSProcessInfo.h +++ b/Headers/gnustep/base/NSProcessInfo.h @@ -6,7 +6,7 @@ Tuparev@EMBL-Heidelberg.de Last update: 08-aug-1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSRange.h b/Headers/gnustep/base/NSRange.h index 90da1004c..c12d786f5 100644 --- a/Headers/gnustep/base/NSRange.h +++ b/Headers/gnustep/base/NSRange.h @@ -4,7 +4,7 @@ * Written by: Adam Fedor * Date: 1995 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSRunLoop.h b/Headers/gnustep/base/NSRunLoop.h index c4049efa6..e71d3b72c 100644 --- a/Headers/gnustep/base/NSRunLoop.h +++ b/Headers/gnustep/base/NSRunLoop.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSSerialization.h b/Headers/gnustep/base/NSSerialization.h index 5353c58ef..07c6654bb 100644 --- a/Headers/gnustep/base/NSSerialization.h +++ b/Headers/gnustep/base/NSSerialization.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSSet.h b/Headers/gnustep/base/NSSet.h index b6814abbc..a7a2101ff 100644 --- a/Headers/gnustep/base/NSSet.h +++ b/Headers/gnustep/base/NSSet.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Sep 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSString.h b/Headers/gnustep/base/NSString.h index 91f1e4732..4c9cf2646 100644 --- a/Headers/gnustep/base/NSString.h +++ b/Headers/gnustep/base/NSString.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSTimer.h b/Headers/gnustep/base/NSTimer.h index af61f0491..3b28a472d 100644 --- a/Headers/gnustep/base/NSTimer.h +++ b/Headers/gnustep/base/NSTimer.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSUtilities.h b/Headers/gnustep/base/NSUtilities.h index c6605947a..d5ad15bcc 100644 --- a/Headers/gnustep/base/NSUtilities.h +++ b/Headers/gnustep/base/NSUtilities.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSValue.h b/Headers/gnustep/base/NSValue.h index d9550c6e2..53c50b04e 100644 --- a/Headers/gnustep/base/NSValue.h +++ b/Headers/gnustep/base/NSValue.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Created: 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NSZone.h b/Headers/gnustep/base/NSZone.h index 0993a5d51..03e29a126 100644 --- a/Headers/gnustep/base/NSZone.h +++ b/Headers/gnustep/base/NSZone.h @@ -4,7 +4,7 @@ Written by: Mark Lakata Date: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Notification.h b/Headers/gnustep/base/Notification.h index 14632e037..d811de462 100644 --- a/Headers/gnustep/base/Notification.h +++ b/Headers/gnustep/base/Notification.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/NotificationDispatcher.h b/Headers/gnustep/base/NotificationDispatcher.h index 9b818db9e..9c985b085 100644 --- a/Headers/gnustep/base/NotificationDispatcher.h +++ b/Headers/gnustep/base/NotificationDispatcher.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/OrderedCollecting.h b/Headers/gnustep/base/OrderedCollecting.h index 5d2df088a..b80b852ea 100644 --- a/Headers/gnustep/base/OrderedCollecting.h +++ b/Headers/gnustep/base/OrderedCollecting.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: Feb 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/OrderedCollection.h b/Headers/gnustep/base/OrderedCollection.h index 4a9fa60cd..d3ee312a8 100644 --- a/Headers/gnustep/base/OrderedCollection.h +++ b/Headers/gnustep/base/OrderedCollection.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: February 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Ordering.h b/Headers/gnustep/base/Ordering.h index 75f39f097..432b03574 100644 --- a/Headers/gnustep/base/Ordering.h +++ b/Headers/gnustep/base/Ordering.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Port.h b/Headers/gnustep/base/Port.h index 5998a7dff..5c31c8652 100644 --- a/Headers/gnustep/base/Port.h +++ b/Headers/gnustep/base/Port.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Proxy.h b/Headers/gnustep/base/Proxy.h index 97fe8ffbc..5f37ea435 100644 --- a/Headers/gnustep/base/Proxy.h +++ b/Headers/gnustep/base/Proxy.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Queue.h b/Headers/gnustep/base/Queue.h index 52f8d2cbb..3a0c82c6b 100644 --- a/Headers/gnustep/base/Queue.h +++ b/Headers/gnustep/base/Queue.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RBTree.h b/Headers/gnustep/base/RBTree.h index b47612b92..2a0e06894 100644 --- a/Headers/gnustep/base/RBTree.h +++ b/Headers/gnustep/base/RBTree.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RBTreeEltNode.h b/Headers/gnustep/base/RBTreeEltNode.h index bd8dc9c6c..2345ab454 100644 --- a/Headers/gnustep/base/RBTreeEltNode.h +++ b/Headers/gnustep/base/RBTreeEltNode.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RBTreeNode.h b/Headers/gnustep/base/RBTreeNode.h index 7a937d7eb..a6ae011dc 100644 --- a/Headers/gnustep/base/RBTreeNode.h +++ b/Headers/gnustep/base/RBTreeNode.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RNGAdditiveCongruential.h b/Headers/gnustep/base/RNGAdditiveCongruential.h index d50a7c9f7..50c1ab4fc 100644 --- a/Headers/gnustep/base/RNGAdditiveCongruential.h +++ b/Headers/gnustep/base/RNGAdditiveCongruential.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RNGBerkeley.h b/Headers/gnustep/base/RNGBerkeley.h index d0a52e2de..9b15b95b6 100644 --- a/Headers/gnustep/base/RNGBerkeley.h +++ b/Headers/gnustep/base/RNGBerkeley.h @@ -3,7 +3,7 @@ Reworked by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Random.h b/Headers/gnustep/base/Random.h index e101baf08..40021810a 100644 --- a/Headers/gnustep/base/Random.h +++ b/Headers/gnustep/base/Random.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RandomGenerating.h b/Headers/gnustep/base/RandomGenerating.h index fcc170417..f9982394c 100644 --- a/Headers/gnustep/base/RandomGenerating.h +++ b/Headers/gnustep/base/RandomGenerating.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RawCStream.h b/Headers/gnustep/base/RawCStream.h index 66265ecc8..ec106a3dc 100644 --- a/Headers/gnustep/base/RawCStream.h +++ b/Headers/gnustep/base/RawCStream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Retaining.h b/Headers/gnustep/base/Retaining.h index 446db84ed..577176293 100644 --- a/Headers/gnustep/base/Retaining.h +++ b/Headers/gnustep/base/Retaining.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/RetainingNotifier.h b/Headers/gnustep/base/RetainingNotifier.h index 074be4e96..ccf719423 100644 --- a/Headers/gnustep/base/RetainingNotifier.h +++ b/Headers/gnustep/base/RetainingNotifier.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Set.h b/Headers/gnustep/base/Set.h index 209076f40..a093c6d5e 100644 --- a/Headers/gnustep/base/Set.h +++ b/Headers/gnustep/base/Set.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/SmallInt.h b/Headers/gnustep/base/SmallInt.h index b21549ffa..e95385bef 100644 --- a/Headers/gnustep/base/SmallInt.h +++ b/Headers/gnustep/base/SmallInt.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Sep 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/SocketPort.h b/Headers/gnustep/base/SocketPort.h index 7e10377e8..9882da7a3 100644 --- a/Headers/gnustep/base/SocketPort.h +++ b/Headers/gnustep/base/SocketPort.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/SplayTree.h b/Headers/gnustep/base/SplayTree.h index 0da17c5db..9893fc480 100644 --- a/Headers/gnustep/base/SplayTree.h +++ b/Headers/gnustep/base/SplayTree.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Stack.h b/Headers/gnustep/base/Stack.h index 63831d64c..dd4751760 100644 --- a/Headers/gnustep/base/Stack.h +++ b/Headers/gnustep/base/Stack.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/StdioStream.h b/Headers/gnustep/base/StdioStream.h index b1b2a6d1a..09acb5f8b 100644 --- a/Headers/gnustep/base/StdioStream.h +++ b/Headers/gnustep/base/StdioStream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Stream.h b/Headers/gnustep/base/Stream.h index 4e6453c2d..b1b00e403 100644 --- a/Headers/gnustep/base/Stream.h +++ b/Headers/gnustep/base/Stream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Streaming.h b/Headers/gnustep/base/Streaming.h index 67eb6344f..3defc83d0 100644 --- a/Headers/gnustep/base/Streaming.h +++ b/Headers/gnustep/base/Streaming.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/String.h b/Headers/gnustep/base/String.h index d3b528fc1..f296393e0 100644 --- a/Headers/gnustep/base/String.h +++ b/Headers/gnustep/base/String.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/TcpPort.h b/Headers/gnustep/base/TcpPort.h index 7a95b13eb..c3e74296c 100644 --- a/Headers/gnustep/base/TcpPort.h +++ b/Headers/gnustep/base/TcpPort.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: February 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/TextCStream.h b/Headers/gnustep/base/TextCStream.h index e9793185a..556025218 100644 --- a/Headers/gnustep/base/TextCStream.h +++ b/Headers/gnustep/base/TextCStream.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/Time.h b/Headers/gnustep/base/Time.h index 944f44bb7..388ac9c3e 100644 --- a/Headers/gnustep/base/Time.h +++ b/Headers/gnustep/base/Time.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/UdpPort.h b/Headers/gnustep/base/UdpPort.h index 4dd7438d0..ba5999d41 100644 --- a/Headers/gnustep/base/UdpPort.h +++ b/Headers/gnustep/base/UdpPort.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/ValueHolding.h b/Headers/gnustep/base/ValueHolding.h index fb42a0ffd..23756291f 100644 --- a/Headers/gnustep/base/ValueHolding.h +++ b/Headers/gnustep/base/ValueHolding.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/all.h b/Headers/gnustep/base/all.h index eaeeaff4a..923a87c52 100644 --- a/Headers/gnustep/base/all.h +++ b/Headers/gnustep/base/all.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/array.h b/Headers/gnustep/base/array.h index 52e560e58..e876ba177 100644 --- a/Headers/gnustep/base/array.h +++ b/Headers/gnustep/base/array.h @@ -6,7 +6,7 @@ * Updated: Tue Mar 12 02:42:54 EST 1996 * Serial: 96.03.12.13 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/atoz.h b/Headers/gnustep/base/atoz.h index 3a8deca95..dacde8a8e 100644 --- a/Headers/gnustep/base/atoz.h +++ b/Headers/gnustep/base/atoz.h @@ -6,7 +6,7 @@ * Updated: Sat Feb 10 15:11:01 EST 1996 * Serial: 96.02.10.03 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/behavior.h b/Headers/gnustep/base/behavior.h index 503efc56a..c5c1dbffb 100644 --- a/Headers/gnustep/base/behavior.h +++ b/Headers/gnustep/base/behavior.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/config.h.in b/Headers/gnustep/base/config.h.in index 3710728a1..1c1f51d01 100644 --- a/Headers/gnustep/base/config.h.in +++ b/Headers/gnustep/base/config.h.in @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: Oct 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/data.h b/Headers/gnustep/base/data.h index 7beace8a0..9411f4c8d 100644 --- a/Headers/gnustep/base/data.h +++ b/Headers/gnustep/base/data.h @@ -6,7 +6,7 @@ * Updated: Sat Feb 10 15:40:21 EST 1996 * Serial: 96.02.10.01 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/fake-main.h b/Headers/gnustep/base/fake-main.h index cc05de315..213d993d5 100644 --- a/Headers/gnustep/base/fake-main.h +++ b/Headers/gnustep/base/fake-main.h @@ -6,7 +6,7 @@ Tuparev@EMBL-Heidelberg.de Last update: 05-aug-1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/hash.h b/Headers/gnustep/base/hash.h index 05825177f..25cb59f28 100644 --- a/Headers/gnustep/base/hash.h +++ b/Headers/gnustep/base/hash.h @@ -6,7 +6,7 @@ * Updated: Tue Mar 19 00:25:34 EST 1996 * Serial: 96.03.19.05 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/list.h b/Headers/gnustep/base/list.h index 45d420bd5..d1222df9c 100644 --- a/Headers/gnustep/base/list.h +++ b/Headers/gnustep/base/list.h @@ -6,7 +6,7 @@ * Updated: Sun Mar 10 23:24:49 EST 1996 * Serial: 96.03.10.02 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/map.h b/Headers/gnustep/base/map.h index 089385a6c..ba47b0e42 100644 --- a/Headers/gnustep/base/map.h +++ b/Headers/gnustep/base/map.h @@ -6,7 +6,7 @@ * Updated: Thu Mar 21 00:05:43 EST 1996 * Serial: 96.03.20.04 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/mframe.h b/Headers/gnustep/base/mframe.h index aa3cc7b20..b8e9202b9 100644 --- a/Headers/gnustep/base/mframe.h +++ b/Headers/gnustep/base/mframe.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Oct 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/numbers.h b/Headers/gnustep/base/numbers.h index 498071d5d..4e6c4f63e 100644 --- a/Headers/gnustep/base/numbers.h +++ b/Headers/gnustep/base/numbers.h @@ -6,7 +6,7 @@ * Updated: Mon Mar 18 14:36:49 EST 1996 * Serial: 96.03.18.03 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_array.h b/Headers/gnustep/base/o_array.h index 52e560e58..e876ba177 100644 --- a/Headers/gnustep/base/o_array.h +++ b/Headers/gnustep/base/o_array.h @@ -6,7 +6,7 @@ * Updated: Tue Mar 12 02:42:54 EST 1996 * Serial: 96.03.12.13 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_cbs.h b/Headers/gnustep/base/o_cbs.h index 1bc7b65e7..40e825a6f 100644 --- a/Headers/gnustep/base/o_cbs.h +++ b/Headers/gnustep/base/o_cbs.h @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 00:31:13 EST 1996 * Serial: 96.03.11.01 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_hash.h b/Headers/gnustep/base/o_hash.h index 05825177f..25cb59f28 100644 --- a/Headers/gnustep/base/o_hash.h +++ b/Headers/gnustep/base/o_hash.h @@ -6,7 +6,7 @@ * Updated: Tue Mar 19 00:25:34 EST 1996 * Serial: 96.03.19.05 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_list.h b/Headers/gnustep/base/o_list.h index 45d420bd5..d1222df9c 100644 --- a/Headers/gnustep/base/o_list.h +++ b/Headers/gnustep/base/o_list.h @@ -6,7 +6,7 @@ * Updated: Sun Mar 10 23:24:49 EST 1996 * Serial: 96.03.10.02 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_map.h b/Headers/gnustep/base/o_map.h index 089385a6c..ba47b0e42 100644 --- a/Headers/gnustep/base/o_map.h +++ b/Headers/gnustep/base/o_map.h @@ -6,7 +6,7 @@ * Updated: Thu Mar 21 00:05:43 EST 1996 * Serial: 96.03.20.04 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_x_bas.h.in b/Headers/gnustep/base/o_x_bas.h.in index bf01de9ae..3b5e4857e 100644 --- a/Headers/gnustep/base/o_x_bas.h.in +++ b/Headers/gnustep/base/o_x_bas.h.in @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 00:54:50 EST 1996 * Serial: 96.03.11.03 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/o_x_cbs.h.in b/Headers/gnustep/base/o_x_cbs.h.in index 2d3480119..36cbad5a4 100644 --- a/Headers/gnustep/base/o_x_cbs.h.in +++ b/Headers/gnustep/base/o_x_cbs.h.in @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 00:54:20 EST 1996 * Serial: 96.03.11.02 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/objc-gnu2next.h b/Headers/gnustep/base/objc-gnu2next.h index b94629cca..3672c6130 100644 --- a/Headers/gnustep/base/objc-gnu2next.h +++ b/Headers/gnustep/base/objc-gnu2next.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/objc-malloc.h b/Headers/gnustep/base/objc-malloc.h index dc8c8eb4b..bcc9592fb 100644 --- a/Headers/gnustep/base/objc-malloc.h +++ b/Headers/gnustep/base/objc-malloc.h @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Headers/gnustep/base/preface.h.in b/Headers/gnustep/base/preface.h.in index 51402b706..7299ea643 100644 --- a/Headers/gnustep/base/preface.h.in +++ b/Headers/gnustep/base/preface.h.in @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Archiver.m b/Source/Archiver.m index 728fa9cca..c67a01ff2 100644 --- a/Source/Archiver.m +++ b/Source/Archiver.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: January 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Array.m b/Source/Array.m index cecad9150..c4693e678 100644 --- a/Source/Array.m +++ b/Source/Array.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/AutoreleasePool.m b/Source/AutoreleasePool.m index 1fdd94abd..845917078 100644 --- a/Source/AutoreleasePool.m +++ b/Source/AutoreleasePool.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/AutoreleaseStack.m b/Source/AutoreleaseStack.m index 081983668..0f3c7b672 100644 --- a/Source/AutoreleaseStack.m +++ b/Source/AutoreleaseStack.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Bag.m b/Source/Bag.m index 80e597379..5c2fe19c4 100644 --- a/Source/Bag.m +++ b/Source/Bag.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/BinaryCStream.m b/Source/BinaryCStream.m index 1b5f9f500..6df36ccf2 100644 --- a/Source/BinaryCStream.m +++ b/Source/BinaryCStream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/BinaryTree.m b/Source/BinaryTree.m index 6c567adde..375be52e4 100644 --- a/Source/BinaryTree.m +++ b/Source/BinaryTree.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/BinaryTreeEltNode.m b/Source/BinaryTreeEltNode.m index 96e7d5d9c..d5063b275 100644 --- a/Source/BinaryTreeEltNode.m +++ b/Source/BinaryTreeEltNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/BinaryTreeNode.m b/Source/BinaryTreeNode.m index d68e01f44..957cb9e04 100644 --- a/Source/BinaryTreeNode.m +++ b/Source/BinaryTreeNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/CStream.m b/Source/CStream.m index cf76ff3ab..bb83e0893 100644 --- a/Source/CStream.m +++ b/Source/CStream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/CString.m b/Source/CString.m index 29c6e249a..54c92e2ea 100644 --- a/Source/CString.m +++ b/Source/CString.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/CircularArray.m b/Source/CircularArray.m index d0a0591df..07e80d160 100644 --- a/Source/CircularArray.m +++ b/Source/CircularArray.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Coder.m b/Source/Coder.m index 01352d56c..a348bf812 100644 --- a/Source/Coder.m +++ b/Source/Coder.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Collection.m b/Source/Collection.m index 75775e275..b7d347644 100644 --- a/Source/Collection.m +++ b/Source/Collection.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -564,7 +564,7 @@ "\n" "Chief Maintainer: Andrew McCallum \n" "\n" - "This object is part of the GNU Objective C Class Library.\n" + "This object is part of the Gnustep Base Library.\n" "\n" "This library is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU Library General Public\n" diff --git a/Source/ConnectedCoder.m b/Source/ConnectedCoder.m index f29ea3abd..e4162ac65 100644 --- a/Source/ConnectedCoder.m +++ b/Source/ConnectedCoder.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Connection.m b/Source/Connection.m index b56d2f382..cd9196bed 100644 --- a/Source/Connection.m +++ b/Source/Connection.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/ConstantString.m b/Source/ConstantString.m index 9c68b7b30..a1595cf4c 100644 --- a/Source/ConstantString.m +++ b/Source/ConstantString.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Decoder.m b/Source/Decoder.m index 1def3e344..4469150d3 100644 --- a/Source/Decoder.m +++ b/Source/Decoder.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: February 1996, with core from Coder, created 1994. - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Dictionary.m b/Source/Dictionary.m index bdaebd85b..1ab6c1ac5 100644 --- a/Source/Dictionary.m +++ b/Source/Dictionary.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/EltNodeCollector.m b/Source/EltNodeCollector.m index 051cf5fda..30fb0eb28 100644 --- a/Source/EltNodeCollector.m +++ b/Source/EltNodeCollector.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Encoder.m b/Source/Encoder.m index 8febedc27..5606404b3 100644 --- a/Source/Encoder.m +++ b/Source/Encoder.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: February 1996, with core from Coder, created 1994. - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/GapArray.m b/Source/GapArray.m index ae04d4ee6..7427ab0c2 100644 --- a/Source/GapArray.m +++ b/Source/GapArray.m @@ -6,7 +6,7 @@ Overhauled by: R. Andrew McCallum - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Heap.m b/Source/Heap.m index 87a49cae0..3d0ca41c0 100644 --- a/Source/Heap.m +++ b/Source/Heap.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/IndexedCollection.m b/Source/IndexedCollection.m index 74d27b0f8..4effe2dc3 100644 --- a/Source/IndexedCollection.m +++ b/Source/IndexedCollection.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Invocation.m b/Source/Invocation.m index 7811243bb..3a853ba98 100644 --- a/Source/Invocation.m +++ b/Source/Invocation.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/KeyedCollection.m b/Source/KeyedCollection.m index 25fd28c8a..7a09aff51 100644 --- a/Source/KeyedCollection.m +++ b/Source/KeyedCollection.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/LinkedList.m b/Source/LinkedList.m index 7400f9ecd..be22e041e 100644 --- a/Source/LinkedList.m +++ b/Source/LinkedList.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/LinkedListEltNode.m b/Source/LinkedListEltNode.m index 50cad9727..53ee8a2cb 100644 --- a/Source/LinkedListEltNode.m +++ b/Source/LinkedListEltNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/LinkedListNode.m b/Source/LinkedListNode.m index 40d1fbe3f..2c0e34b8d 100644 --- a/Source/LinkedListNode.m +++ b/Source/LinkedListNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/List.m b/Source/List.m index d62be13e2..efd628092 100644 --- a/Source/List.m +++ b/Source/List.m @@ -1,7 +1,7 @@ /* Implementation of Objective-C NeXT-compatible List object Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc. - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. Written by: R. Andrew McCallum Date: May 1993 diff --git a/Source/Lock.m b/Source/Lock.m index 425c088cd..35461eca3 100644 --- a/Source/Lock.m +++ b/Source/Lock.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/MachPort.m b/Source/MachPort.m index 5ca0fdb12..81632cce1 100644 --- a/Source/MachPort.m +++ b/Source/MachPort.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: September 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Magnitude.m b/Source/Magnitude.m index 57d6c570b..4a2022f30 100644 --- a/Source/Magnitude.m +++ b/Source/Magnitude.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/MallocAddress.m b/Source/MallocAddress.m index 266f6c58e..483888658 100644 --- a/Source/MallocAddress.m +++ b/Source/MallocAddress.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/MappedCollector.m b/Source/MappedCollector.m index 277674d14..03bae4aef 100644 --- a/Source/MappedCollector.m +++ b/Source/MappedCollector.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/MemoryStream.m b/Source/MemoryStream.m index ce0f781dc..3ab5e7589 100644 --- a/Source/MemoryStream.m +++ b/Source/MemoryStream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/MutableCString.m b/Source/MutableCString.m index 2936ce683..5ebdc107a 100644 --- a/Source/MutableCString.m +++ b/Source/MutableCString.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/MutableString.m b/Source/MutableString.m index c89c54a28..5d382cf87 100644 --- a/Source/MutableString.m +++ b/Source/MutableString.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSAllocateObject.m b/Source/NSAllocateObject.m index 2eb040334..b4fb50286 100644 --- a/Source/NSAllocateObject.m +++ b/Source/NSAllocateObject.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: August 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSArchiver.m b/Source/NSArchiver.m index f0d4b2652..874a067a4 100644 --- a/Source/NSArchiver.m +++ b/Source/NSArchiver.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSArray.m b/Source/NSArray.m index 33e948d2b..e70cebd18 100644 --- a/Source/NSArray.m +++ b/Source/NSArray.m @@ -5,7 +5,7 @@ From skeleton by: Adam Fedor Created: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSAssertionHandler.m b/Source/NSAssertionHandler.m index 1b8935c3d..1fc5d1f49 100644 --- a/Source/NSAssertionHandler.m +++ b/Source/NSAssertionHandler.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Apr 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSAutoreleasePool.m b/Source/NSAutoreleasePool.m index 03bd3efff..aa4ca1d37 100644 --- a/Source/NSAutoreleasePool.m +++ b/Source/NSAutoreleasePool.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSBitmapCharSet.m b/Source/NSBitmapCharSet.m index c72870451..0d6747ca6 100644 --- a/Source/NSBitmapCharSet.m +++ b/Source/NSBitmapCharSet.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Apr 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSBundle.m b/Source/NSBundle.m index 7ea5ae85d..cf49610e4 100644 --- a/Source/NSBundle.m +++ b/Source/NSBundle.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSCTemplateValue.m b/Source/NSCTemplateValue.m index 10fdca91a..3aae16a88 100644 --- a/Source/NSCTemplateValue.m +++ b/Source/NSCTemplateValue.m @@ -5,7 +5,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSCallBacks.h b/Source/NSCallBacks.h index 0a2862000..7b3978aad 100644 --- a/Source/NSCallBacks.h +++ b/Source/NSCallBacks.h @@ -6,7 +6,7 @@ * Updated: Tue Feb 13 23:10:29 EST 1996 * Serial: 96.02.13.01 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/NSCallBacks.m b/Source/NSCallBacks.m index 0944c5c36..f073f6398 100644 --- a/Source/NSCallBacks.m +++ b/Source/NSCallBacks.m @@ -6,7 +6,7 @@ * Updated: Wed Mar 20 19:53:48 EST 1996 * Serial: 96.03.20.02 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/NSCharacterSet.m b/Source/NSCharacterSet.m index 79d5b33c3..80e498bd5 100644 --- a/Source/NSCharacterSet.m +++ b/Source/NSCharacterSet.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Apr 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSCoder.m b/Source/NSCoder.m index 120ebac78..28e9fa802 100644 --- a/Source/NSCoder.m +++ b/Source/NSCoder.m @@ -5,7 +5,7 @@ From skeleton by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSConcreteNumber.m b/Source/NSConcreteNumber.m index aa782dc47..ba75134b0 100644 --- a/Source/NSConcreteNumber.m +++ b/Source/NSConcreteNumber.m @@ -6,7 +6,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSConcreteValue.m b/Source/NSConcreteValue.m index eb0e58d7c..e955a0481 100644 --- a/Source/NSConcreteValue.m +++ b/Source/NSConcreteValue.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSCopyObject.m b/Source/NSCopyObject.m index cba6ee95e..1daf41a9e 100644 --- a/Source/NSCopyObject.m +++ b/Source/NSCopyObject.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: August 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSCountedSet.m b/Source/NSCountedSet.m index 537b2b774..c23847bf0 100644 --- a/Source/NSCountedSet.m +++ b/Source/NSCountedSet.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Sep 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSData.m b/Source/NSData.m index e8df20483..9568b5f44 100644 --- a/Source/NSData.m +++ b/Source/NSData.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSDate.m b/Source/NSDate.m index fd262575d..411a4c853 100644 --- a/Source/NSDate.m +++ b/Source/NSDate.m @@ -4,7 +4,7 @@ Written by: Jeremy Bettis Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSDeallocateObject.m b/Source/NSDeallocateObject.m index fc455dea0..2cf3dda7b 100644 --- a/Source/NSDeallocateObject.m +++ b/Source/NSDeallocateObject.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: August 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSDictionary.m b/Source/NSDictionary.m index dd9601ab0..be4621e0b 100644 --- a/Source/NSDictionary.m +++ b/Source/NSDictionary.m @@ -5,7 +5,7 @@ From skeleton by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSEnumerator.m b/Source/NSEnumerator.m index 73f1e9a4d..3f8aaa3c9 100644 --- a/Source/NSEnumerator.m +++ b/Source/NSEnumerator.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSException.m b/Source/NSException.m index 0993993c6..f08f31cd1 100644 --- a/Source/NSException.m +++ b/Source/NSException.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGArchiver.m b/Source/NSGArchiver.m index 6230a8882..e1202a1e2 100644 --- a/Source/NSGArchiver.m +++ b/Source/NSGArchiver.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGArray.m b/Source/NSGArray.m index 535decfd2..d5fe20790 100644 --- a/Source/NSGArray.m +++ b/Source/NSGArray.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGCString.m b/Source/NSGCString.m index 192aaad32..7fd891736 100644 --- a/Source/NSGCString.m +++ b/Source/NSGCString.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGCountedSet.m b/Source/NSGCountedSet.m index e4bdc3981..3dd650aad 100644 --- a/Source/NSGCountedSet.m +++ b/Source/NSGCountedSet.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Sep 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGData.m b/Source/NSGData.m index 60fef4b2f..42f7afcbe 100644 --- a/Source/NSGData.m +++ b/Source/NSGData.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGDictionary.m b/Source/NSGDictionary.m index 5f86bf8fc..c6e7160eb 100644 --- a/Source/NSGDictionary.m +++ b/Source/NSGDictionary.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGSet.m b/Source/NSGSet.m index 43bb03e84..7611f7d7c 100644 --- a/Source/NSGSet.m +++ b/Source/NSGSet.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: September 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSGeometry.m b/Source/NSGeometry.m index 5465d2c45..30c6a5cc0 100644 --- a/Source/NSGeometry.m +++ b/Source/NSGeometry.m @@ -4,7 +4,7 @@ * Written by: Adam Fedor * Date: Mar 1995 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/NSHashTable.m b/Source/NSHashTable.m index 8bab27dee..6d80e16bb 100644 --- a/Source/NSHashTable.m +++ b/Source/NSHashTable.m @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 01:48:31 EST 1996 * Serial: 96.03.11.06 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/NSInvocation.m b/Source/NSInvocation.m index 647f7c266..b7a05824c 100644 --- a/Source/NSInvocation.m +++ b/Source/NSInvocation.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSLog.m b/Source/NSLog.m index 4b6135854..088ae0536 100644 --- a/Source/NSLog.m +++ b/Source/NSLog.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Nov 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSMapTable.m b/Source/NSMapTable.m index d27e45b07..7b7b06057 100644 --- a/Source/NSMapTable.m +++ b/Source/NSMapTable.m @@ -6,7 +6,7 @@ * Updated: Sun Mar 17 18:37:12 EST 1996 * Serial: 96.03.17.31 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/NSMethodSignature.m b/Source/NSMethodSignature.m index 99c2accbd..3a8599eb8 100644 --- a/Source/NSMethodSignature.m +++ b/Source/NSMethodSignature.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: August 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSMutableData.m b/Source/NSMutableData.m index 176137ca6..9a554047b 100644 --- a/Source/NSMutableData.m +++ b/Source/NSMutableData.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSNotification.m b/Source/NSNotification.m index 829b91d2f..cb529a2e1 100644 --- a/Source/NSNotification.m +++ b/Source/NSNotification.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSNotificationCenter.m b/Source/NSNotificationCenter.m index e0e0adf73..b06181590 100644 --- a/Source/NSNotificationCenter.m +++ b/Source/NSNotificationCenter.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSNumber.m b/Source/NSNumber.m index bd71dea96..e452c22bc 100644 --- a/Source/NSNumber.m +++ b/Source/NSNumber.m @@ -5,7 +5,7 @@ Written by: Adam Fedor Created: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSObjCRuntime.m b/Source/NSObjCRuntime.m index a61cb60cc..9acaf98fd 100644 --- a/Source/NSObjCRuntime.m +++ b/Source/NSObjCRuntime.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: Aug 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSObject.m b/Source/NSObject.m index ba003d3ad..a1a6c4138 100644 --- a/Source/NSObject.m +++ b/Source/NSObject.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: August 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSProcessInfo.m b/Source/NSProcessInfo.m index 8ff72410a..0bbaed65f 100644 --- a/Source/NSProcessInfo.m +++ b/Source/NSProcessInfo.m @@ -5,7 +5,7 @@ Heidelberg, Germany Tuparev@EMBL-Heidelberg.de - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSRunLoop.m b/Source/NSRunLoop.m index c080b1987..a71a37ecf 100644 --- a/Source/NSRunLoop.m +++ b/Source/NSRunLoop.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: April 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSSet.m b/Source/NSSet.m index a61df249a..7b8004826 100644 --- a/Source/NSSet.m +++ b/Source/NSSet.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Sep 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSString.m b/Source/NSString.m index c9fc59208..3ec6bb51e 100644 --- a/Source/NSString.m +++ b/Source/NSString.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSTimeZone.m b/Source/NSTimeZone.m index c08f8822b..7c2e0ff63 100644 --- a/Source/NSTimeZone.m +++ b/Source/NSTimeZone.m @@ -3,7 +3,7 @@ Written by: Peter Burka Date: July 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSTimer.m b/Source/NSTimer.m index 8fa50d4a9..50fe9f332 100644 --- a/Source/NSTimer.m +++ b/Source/NSTimer.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSValue.m b/Source/NSValue.m index 17b4387a0..bab5404bb 100644 --- a/Source/NSValue.m +++ b/Source/NSValue.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Mar 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NSZone.m b/Source/NSZone.m index c2c4353b6..83fbc8dbd 100644 --- a/Source/NSZone.m +++ b/Source/NSZone.m @@ -4,7 +4,7 @@ Author: Mark Lakata Date: January 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NXConnection.m b/Source/NXConnection.m index e40d3ae94..4d003a7f4 100644 --- a/Source/NXConnection.m +++ b/Source/NXConnection.m @@ -1,7 +1,7 @@ /* Implementation of Objective-C method-name-compatible NXConnection Copyright (C) 1994 Free Software Foundation, Inc. - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. Written by: R. Andrew McCallum Date: May 1993 diff --git a/Source/NXProtocolChecker.m b/Source/NXProtocolChecker.m index 7bee90e52..82fcf52b1 100644 --- a/Source/NXProtocolChecker.m +++ b/Source/NXProtocolChecker.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Dept. of Computer Science, U. of Rochester, Rochester, NY 14627 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NXProxy.m b/Source/NXProxy.m index 79ff33fbc..88b95ec62 100644 --- a/Source/NXProxy.m +++ b/Source/NXProxy.m @@ -1,7 +1,7 @@ /* Implementation of Objective-C method-name-compatible NXProxy Copyright (C) 1994 Free Software Foundation, Inc. - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. Written by: R. Andrew McCallum Date: May 1993 diff --git a/Source/Notification.m b/Source/Notification.m index b631b4bd2..548dc1a3d 100644 --- a/Source/Notification.m +++ b/Source/Notification.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NotificationDispatcher.m b/Source/NotificationDispatcher.m index d1cea10cb..a8c51daf5 100644 --- a/Source/NotificationDispatcher.m +++ b/Source/NotificationDispatcher.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/NotificationQueue.m b/Source/NotificationQueue.m index b92202522..fb25555c2 100644 --- a/Source/NotificationQueue.m +++ b/Source/NotificationQueue.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/ObjectRetaining.m b/Source/ObjectRetaining.m index 505f56593..1119f371f 100644 --- a/Source/ObjectRetaining.m +++ b/Source/ObjectRetaining.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: August 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/OrderedCollection.m b/Source/OrderedCollection.m index ab8fd7009..d8d122e1d 100644 --- a/Source/OrderedCollection.m +++ b/Source/OrderedCollection.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Feb 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Port.m b/Source/Port.m index d674a9dd0..1390b5f79 100644 --- a/Source/Port.m +++ b/Source/Port.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Proxy.m b/Source/Proxy.m index 613bfa650..2b81ee1c7 100644 --- a/Source/Proxy.m +++ b/Source/Proxy.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Queue.m b/Source/Queue.m index b30516992..c6e0b90e2 100644 --- a/Source/Queue.m +++ b/Source/Queue.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RBTree.m b/Source/RBTree.m index 050e6d569..1fbb053c9 100644 --- a/Source/RBTree.m +++ b/Source/RBTree.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RBTreeEltNode.m b/Source/RBTreeEltNode.m index ec18f9694..ae9290037 100644 --- a/Source/RBTreeEltNode.m +++ b/Source/RBTreeEltNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RBTreeNode.m b/Source/RBTreeNode.m index fd13aa742..a698c43d8 100644 --- a/Source/RBTreeNode.m +++ b/Source/RBTreeNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RNGAdditiveCongruential.m b/Source/RNGAdditiveCongruential.m index 4f15d9ec9..03226dca5 100644 --- a/Source/RNGAdditiveCongruential.m +++ b/Source/RNGAdditiveCongruential.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RNGBerkeley.m b/Source/RNGBerkeley.m index 450268869..f58437d19 100644 --- a/Source/RNGBerkeley.m +++ b/Source/RNGBerkeley.m @@ -3,7 +3,7 @@ Reworked by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Random.m b/Source/Random.m index f6e0add6a..84d2e0882 100644 --- a/Source/Random.m +++ b/Source/Random.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RawCStream.m b/Source/RawCStream.m index 9b67354b0..158b06f26 100644 --- a/Source/RawCStream.m +++ b/Source/RawCStream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RetainingNotifier.m b/Source/RetainingNotifier.m index 561bcc3c2..4137f608c 100644 --- a/Source/RetainingNotifier.m +++ b/Source/RetainingNotifier.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/RunLoop.m b/Source/RunLoop.m index d2998f393..0d3dd4fc9 100644 --- a/Source/RunLoop.m +++ b/Source/RunLoop.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: March 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Set.m b/Source/Set.m index b12e11afc..bad1fe875 100644 --- a/Source/Set.m +++ b/Source/Set.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/SocketPort.m b/Source/SocketPort.m index 2b48b7ca7..42051b7c7 100644 --- a/Source/SocketPort.m +++ b/Source/SocketPort.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/SplayTree.m b/Source/SplayTree.m index e50fa75e9..26ae83d66 100644 --- a/Source/SplayTree.m +++ b/Source/SplayTree.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Stack.m b/Source/Stack.m index 8693ab002..351350ee5 100644 --- a/Source/Stack.m +++ b/Source/Stack.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/StdioStream.m b/Source/StdioStream.m index ea4dbead7..890414ff8 100644 --- a/Source/StdioStream.m +++ b/Source/StdioStream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Storage.m b/Source/Storage.m index f74dcabbc..deab0c840 100644 --- a/Source/Storage.m +++ b/Source/Storage.m @@ -4,7 +4,7 @@ Written by: Kresten Krab Thorup Dept. of Mathematics and Computer Science, Aalborg U., Denmark - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Stream.m b/Source/Stream.m index 1ce2df754..cf5034bf5 100644 --- a/Source/Stream.m +++ b/Source/Stream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/String.m b/Source/String.m index acf75cdef..54d6a3bbe 100644 --- a/Source/String.m +++ b/Source/String.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/TcpPort.m b/Source/TcpPort.m index a8a0e1242..47e75ebe7 100644 --- a/Source/TcpPort.m +++ b/Source/TcpPort.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: February 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/TextCStream.m b/Source/TextCStream.m index c50b94fd1..59728fac1 100644 --- a/Source/TextCStream.m +++ b/Source/TextCStream.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Written: Jan 1996 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Time.m b/Source/Time.m index 317ab6273..a699b7609 100644 --- a/Source/Time.m +++ b/Source/Time.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/Tree.m b/Source/Tree.m index c32ba463a..a6380f409 100644 --- a/Source/Tree.m +++ b/Source/Tree.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/TreeNode.m b/Source/TreeNode.m index d73c3b064..26591e373 100644 --- a/Source/TreeNode.m +++ b/Source/TreeNode.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/UdpPort.m b/Source/UdpPort.m index 5da8d9219..a76022859 100644 --- a/Source/UdpPort.m +++ b/Source/UdpPort.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/array.m b/Source/array.m index 7b463a84a..8d2b9119c 100644 --- a/Source/array.m +++ b/Source/array.m @@ -6,7 +6,7 @@ * Updated: Tue Mar 12 02:42:33 EST 1996 * Serial: 96.03.12.13 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/behavior.m b/Source/behavior.m index 8f5b5905f..dc8de7639 100644 --- a/Source/behavior.m +++ b/Source/behavior.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: March 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/data.m b/Source/data.m index 1ae24ce67..713d2896b 100644 --- a/Source/data.m +++ b/Source/data.m @@ -7,7 +7,7 @@ * Updated: Sat Feb 10 16:12:17 EST 1996 * Serial: 96.02.10.07 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/eltfuncs.m b/Source/eltfuncs.m index 041cb629a..2394fac94 100644 --- a/Source/eltfuncs.m +++ b/Source/eltfuncs.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/gnu4next.m b/Source/gnu4next.m index e85c48236..17faa6589 100644 --- a/Source/gnu4next.m +++ b/Source/gnu4next.m @@ -4,7 +4,7 @@ Author: Kresten Krab Thorup Modified by: Andrew McCallum - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/gnu4nextrt.m b/Source/gnu4nextrt.m index 2c2d15939..a3d663ac5 100644 --- a/Source/gnu4nextrt.m +++ b/Source/gnu4nextrt.m @@ -4,7 +4,7 @@ Author: Kresten Krab Thorup Modified by: Andrew McCallum - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/hash.m b/Source/hash.m index b845c2c0c..4818d5b38 100644 --- a/Source/hash.m +++ b/Source/hash.m @@ -6,7 +6,7 @@ * Updated: Tue Mar 19 00:25:18 EST 1996 * Serial: 96.03.19.33 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/list.m b/Source/list.m index 0899102e6..40784884f 100644 --- a/Source/list.m +++ b/Source/list.m @@ -6,7 +6,7 @@ * Updated: Wed Mar 20 20:48:39 EST 1996 * Serial: 96.03.20.04 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/map.m b/Source/map.m index e928a4297..8478a726e 100644 --- a/Source/map.m +++ b/Source/map.m @@ -6,7 +6,7 @@ * Updated: Tue Mar 12 02:12:37 EST 1996 * Serial: 96.03.12.25 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/mframe.m b/Source/mframe.m index 104df20b6..26eac7339 100644 --- a/Source/mframe.m +++ b/Source/mframe.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: Oct 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/numbers.c b/Source/numbers.c index e867658e9..471115846 100644 --- a/Source/numbers.c +++ b/Source/numbers.c @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 02:40:00 EST 1996 * Serial: 96.03.11.03 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_array.m b/Source/o_array.m index 7b463a84a..8d2b9119c 100644 --- a/Source/o_array.m +++ b/Source/o_array.m @@ -6,7 +6,7 @@ * Updated: Tue Mar 12 02:42:33 EST 1996 * Serial: 96.03.12.13 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_cbs.m b/Source/o_cbs.m index f0087f3a3..f25b47485 100644 --- a/Source/o_cbs.m +++ b/Source/o_cbs.m @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 02:17:32 EST 1996 * Serial: 96.03.11.08 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_cbs_char_p.m b/Source/o_cbs_char_p.m index 0e4717f21..13c59f26d 100644 --- a/Source/o_cbs_char_p.m +++ b/Source/o_cbs_char_p.m @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 03:09:33 EST 1996 * Serial: 96.03.11.06 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_cbs_id.m b/Source/o_cbs_id.m index bc4a2349e..2b1c2e067 100644 --- a/Source/o_cbs_id.m +++ b/Source/o_cbs_id.m @@ -6,7 +6,7 @@ * Updated: Sun Feb 11 01:42:20 EST 1996 * Serial: 96.02.11.05 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_cbs_int.m b/Source/o_cbs_int.m index ebb287529..1ec9d0096 100644 --- a/Source/o_cbs_int.m +++ b/Source/o_cbs_int.m @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 00:23:10 EST 1996 * Serial: 96.03.11.01 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_cbs_int_p.m b/Source/o_cbs_int_p.m index 5965da3e8..da86efc9c 100644 --- a/Source/o_cbs_int_p.m +++ b/Source/o_cbs_int_p.m @@ -6,7 +6,7 @@ * Updated: Sun Feb 11 01:49:55 EST 1996 * Serial: 96.02.11.04 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_cbs_void_p.m b/Source/o_cbs_void_p.m index aa8f73df5..3c6cec0c5 100644 --- a/Source/o_cbs_void_p.m +++ b/Source/o_cbs_void_p.m @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 02:03:13 EST 1996 * Serial: 96.03.11.04 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_hash.m b/Source/o_hash.m index b845c2c0c..4818d5b38 100644 --- a/Source/o_hash.m +++ b/Source/o_hash.m @@ -6,7 +6,7 @@ * Updated: Tue Mar 19 00:25:18 EST 1996 * Serial: 96.03.19.33 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_list.m b/Source/o_list.m index 0899102e6..40784884f 100644 --- a/Source/o_list.m +++ b/Source/o_list.m @@ -6,7 +6,7 @@ * Updated: Wed Mar 20 20:48:39 EST 1996 * Serial: 96.03.20.04 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_map.m b/Source/o_map.m index e928a4297..8478a726e 100644 --- a/Source/o_map.m +++ b/Source/o_map.m @@ -6,7 +6,7 @@ * Updated: Tue Mar 12 02:12:37 EST 1996 * Serial: 96.03.12.25 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_vprintf.c b/Source/o_vprintf.c index aab7fa315..e580726ac 100644 --- a/Source/o_vprintf.c +++ b/Source/o_vprintf.c @@ -1,9 +1,9 @@ -/* Implementation of o_vprintf for GNU Objective C Class Library +/* Implementation of o_vprintf for Gnustep Base Library Reworked by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/o_vscanf.c b/Source/o_vscanf.c index ecf648da2..f92af4779 100644 --- a/Source/o_vscanf.c +++ b/Source/o_vscanf.c @@ -1,9 +1,9 @@ -/* Implementation of o_vscanf for GNU Objective C Class Library +/* Implementation of o_vscanf for Gnustep Base Library Reworked by: R. Andrew McCallum Date: July 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/o_x_bas.m.in b/Source/o_x_bas.m.in index 97c23fe2a..16a685310 100644 --- a/Source/o_x_bas.m.in +++ b/Source/o_x_bas.m.in @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 00:56:35 EST 1996 * Serial: 96.03.11.02 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/o_x_cbs.m.in b/Source/o_x_cbs.m.in index a2bce4a74..4a372fcfb 100644 --- a/Source/o_x_cbs.m.in +++ b/Source/o_x_cbs.m.in @@ -6,7 +6,7 @@ * Updated: Mon Mar 11 00:55:40 EST 1996 * Serial: 96.03.11.02 * - * This file is part of the GNU Objective C Class Library. + * This file is part of the Gnustep Base Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/Source/objc-gnu2next.m b/Source/objc-gnu2next.m index 7deb4e7ae..019329f8c 100644 --- a/Source/objc-gnu2next.m +++ b/Source/objc-gnu2next.m @@ -5,7 +5,7 @@ Modified by: R. Andrew McCallum Date: Sep 1994 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/objc-load.c b/Source/objc-load.c index c6aeb5103..73b4cc66b 100644 --- a/Source/objc-load.c +++ b/Source/objc-load.c @@ -4,7 +4,7 @@ Written by: Adam Fedor, Pedja Bogdanovich - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/objc-malloc.m b/Source/objc-malloc.m index 6b4dced7f..37f9e0865 100644 --- a/Source/objc-malloc.m +++ b/Source/objc-malloc.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/preface.m b/Source/preface.m index 17e1114e4..36484eb09 100644 --- a/Source/preface.m +++ b/Source/preface.m @@ -4,7 +4,7 @@ Written by: R. Andrew McCallum Created: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Source/vfscanf.c b/Source/vfscanf.c index ca6b4c1c4..1bc85ad48 100644 --- a/Source/vfscanf.c +++ b/Source/vfscanf.c @@ -1,9 +1,9 @@ -/* Implementation of vfscanf for GNU Objective C Class Library +/* Implementation of vfscanf for Gnustep Base Library Reworked by: R. Andrew McCallum Date: May 1993 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/Testing/LoadMe.h b/Testing/LoadMe.h index 2abac40fd..84933e526 100644 --- a/Testing/LoadMe.h +++ b/Testing/LoadMe.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include diff --git a/Testing/LoadMe.m b/Testing/LoadMe.m index 4b48d09a2..89a364f24 100644 --- a/Testing/LoadMe.m +++ b/Testing/LoadMe.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include diff --git a/Testing/MyCategory.h b/Testing/MyCategory.h index 9244ffc56..a75107722 100644 --- a/Testing/MyCategory.h +++ b/Testing/MyCategory.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include diff --git a/Testing/MyCategory.m b/Testing/MyCategory.m index fadb37648..b604845e3 100644 --- a/Testing/MyCategory.m +++ b/Testing/MyCategory.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include "MyCategory.h" diff --git a/Testing/SecondClass.h b/Testing/SecondClass.h index 32ebb6251..362e9d89d 100644 --- a/Testing/SecondClass.h +++ b/Testing/SecondClass.h @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include diff --git a/Testing/SecondClass.m b/Testing/SecondClass.m index d56bc5d43..bb5cf10ec 100644 --- a/Testing/SecondClass.m +++ b/Testing/SecondClass.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include "SecondClass.h" diff --git a/Testing/nsbundle.m b/Testing/nsbundle.m index 445b420be..9acc0b965 100644 --- a/Testing/nsbundle.m +++ b/Testing/nsbundle.m @@ -4,7 +4,7 @@ Written by: Adam Fedor Date: Jul 1995 - This file is part of the GNU Objective C Class Library. + This file is part of the Gnustep Base Library. */ #include