mirror of
https://github.com/darlinghq/darling-libobjc2.git
synced 2024-12-26 05:56:12 +00:00
11 lines
172 B
C
11 lines
172 B
C
|
/**
|
||
|
* Stub declaration of NSObject. Lots of things in the runtime require the
|
||
|
*/
|
||
|
@interface NSObject
|
||
|
-retain;
|
||
|
-copy;
|
||
|
-(void)release;
|
||
|
-autorelease;
|
||
|
-(void)dealloc;
|
||
|
@end
|