* ObjectiveC2/sync.m -- Removed WEAK declaration

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31201 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Jonathan Gillaspie 2010-08-25 17:38:13 +00:00
parent 4e53fdb192
commit 300d429113
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2010-08-25 Jonathan Gillaspie <jonathan.gillaspie@testplant.com>
* Source/Objective2/sync.m: Removed weak declarations
2010-08-24 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/GSFileHandle.m (-initWithStandardError,

View file

@ -161,7 +161,6 @@ sync_add_node(id obj)
* Add a lock for the object.
*/
int
__attribute__((weak))
objc_sync_enter(id obj)
{
lock_node_t *node = NULL;
@ -203,7 +202,6 @@ objc_sync_enter(id obj)
* Remove a lock for the object.
*/
int
__attribute__((weak))
objc_sync_exit(id obj)
{
lock_node_t *node = NULL;