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