mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-11 08:40:44 +00:00
Correct license text in sync.m and also correct the test to see if the ObjC compiler is working.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31519 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2916e80032
commit
a512ed3b02
3 changed files with 25 additions and 25 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2010-10-16 16:53-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||||
|
|
||||||
|
* config/objc-common.g: Correct test. The previous version didn't
|
||||||
|
include the { and the } in the ivar section. This is not correct.
|
||||||
|
* Source/ObjectiveC2/sync.m: Correct license text.
|
||||||
|
|
||||||
2010-10-13 Richard Frith-Macdonald <rfm@gnu.org>
|
2010-10-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSURL.m: Match OSX behavior with file scheme URLS (treat
|
* Source/NSURL.m: Match OSX behavior with file scheme URLS (treat
|
||||||
|
|
|
@ -2,32 +2,24 @@
|
||||||
The implementation of synchronization primitives for Objective-C.
|
The implementation of synchronization primitives for Objective-C.
|
||||||
Copyright (C) 2008 Free Software Foundation, Inc.
|
Copyright (C) 2008 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GCC.
|
|
||||||
|
|
||||||
Gregory Casamento <greg.casamento@gmail.com>
|
Gregory Casamento <greg.casamento@gmail.com>
|
||||||
|
|
||||||
GCC is free software; you can redistribute it and/or modify it
|
This file is part of the GNUstep Base Library.
|
||||||
under the terms of the GNU General Public License as published by the
|
|
||||||
Free Software Foundation; either version 2, or (at your option) any
|
|
||||||
later version.
|
|
||||||
|
|
||||||
GCC is distributed in the hope that it will be useful, but WITHOUT
|
This library is free software; you can redistribute it and/or
|
||||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
modify it under the terms of the GNU Lesser General Public
|
||||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
License as published by the Free Software Foundation; either
|
||||||
License for more details.
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
This library is distributed in the hope that it will be useful,
|
||||||
along with GCC; see the file COPYING. If not, write to
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
Boston, MA 02110-1301, USA.
|
Library General Public License for more details.
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
You should have received a copy of the GNU Lesser General Public
|
||||||
As a special exception, if you link this library with files compiled
|
License along with this library; if not, write to the Free
|
||||||
with GCC to produce an executable, this does not cause the resulting
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||||
executable to be covered by the GNU General Public License. This
|
Boston, MA 02111 USA.
|
||||||
exception does not however invalidate any other reasons why the
|
|
||||||
executable file might be covered by the GNU General Public License.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
|
@ -27,7 +27,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@interface NSObject
|
@interface NSObject
|
||||||
|
{
|
||||||
id isa;
|
id isa;
|
||||||
|
}
|
||||||
@end
|
@end
|
||||||
@implementation NSObject
|
@implementation NSObject
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in a new issue