mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Rename in comments from GNU Objective C Class Library to Gnustep Base Library.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1451 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
02f8653efb
commit
05817bc168
295 changed files with 415 additions and 298 deletions
117
ChangeLog
117
ChangeLog
|
@ -1,5 +1,122 @@
|
|||
Wed Apr 17 08:56:09 1996 Andrew McCallum <mccallum@cs.rochester.edu>
|
||||
|
||||
Major renaming!
|
||||
"GNU Objective C Class Library" -> "Gnustep Base Library"
|
||||
libobjects.a -> libgnustep-base.a
|
||||
libobjects.tar.gz -> gstep-base.tar.gz
|
||||
<objects/*.h> -> <gnustep/base/*.h>
|
||||
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 <Foundation/NSString.h>
|
||||
|
||||
* 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 <Foundation/NSString.h>.
|
||||
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 <objects/*.h> to #include <gnustep/base/*.h>.
|
||||
|
||||
* 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
|
||||
<objects/NSString.h>
|
||||
* src/Foundation/NSSet.h: Insert contents of <objects/NSSet.h>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Kresten Krab Thorup <krab@iesd.auc.dk>
|
||||
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
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
Copyright (C) 1993,1994 Kresten Krab Thorup <krab@iesd.auc.dk>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
* 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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
* 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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Adam Fedor <fedor@boulder.colorado.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: Mark Lakata <lakata@sseos.lbl.gov>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Reworked by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
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
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue