2e20c248f3
Removed include guard in SkTime_Unix.cpp, which the iOSSampleApp now uses. git-svn-id: http://skia.googlecode.com/svn/trunk@1820 2bbb7eff-a529-9590-31e7-b0007b416f81
10 lines
254 B
Objective-C
10 lines
254 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
signal(SIGPIPE, SIG_IGN);
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
[pool release];
|
|
return retVal;
|
|
}
|