1*0a6a1f1dSLionel Sambuc#include "header1.h" 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel Sambuc@implementation S1 4*0a6a1f1dSLionel Sambuc-(int)prop { return 0; } 5*0a6a1f1dSLionel Sambuc-(void)setProp:(int)p {} 6*0a6a1f1dSLionel Sambuc+(id)s1 { return 0; } 7*0a6a1f1dSLionel Sambuc-(id)initWithFoo:(NSString*)foo 8*0a6a1f1dSLionel Sambuc{ 9*0a6a1f1dSLionel Sambuc self = [super init]; 10*0a6a1f1dSLionel Sambuc if (self) { 11*0a6a1f1dSLionel Sambuc } 12*0a6a1f1dSLionel Sambuc return self; 13*0a6a1f1dSLionel Sambuc} 14*0a6a1f1dSLionel Sambuc@end 15