aboutsummaryrefslogtreecommitdiff
path: root/libobjc/objects.c
diff options
context:
space:
mode:
Diffstat (limited to 'libobjc/objects.c')
-rw-r--r--libobjc/objects.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libobjc/objects.c b/libobjc/objects.c
index bcfb25b..fe11062 100644
--- a/libobjc/objects.c
+++ b/libobjc/objects.c
@@ -67,12 +67,6 @@ class_createInstance (Class class, size_t extraBytes)
/* Traditional GNU Objective-C Runtime API. */
id
-class_create_instance (Class class)
-{
- return class_createInstance (class, 0);
-}
-
-id
object_copy (id object, size_t extraBytes)
{
if ((object != nil) && CLS_ISCLASS (object->class_pointer))
@@ -122,4 +116,3 @@ object_setClass (id object, Class class_)
return old_class;
}
}
-